Skip to content

Latest commit

 

History

History
33 lines (21 loc) · 549 Bytes

README.md

File metadata and controls

33 lines (21 loc) · 549 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

Label

https://usage.imagemagick.org/text/

magick -background lightblue -fill blue \
          -font Candice -pointsize 72 label:Anthony \
          label.gif