Skip to content

Latest commit

 

History

History
21 lines (14 loc) · 371 Bytes

README.md

File metadata and controls

21 lines (14 loc) · 371 Bytes

ImageMagick

Command line image editing https://imagemagick.com

Resize image

 magick convert image.png -resize 960x540 image_resized.png

Masking

convert original.png -matte mask.png -compose DstIn -composite output.png

Turn white color to transparent

 magick convert source.png -fuzz 20% -transparent white result.png