imagemagik
Table of ContentsClose
1. Basics
- The main command is
convert
convert name.ext1 name.ext2
just works- To see which
delegate
is handling the file:convert -list delegate | rg -i <ext_name>
- Details on an image:
magick identify -verbose <filename>.<ext>
- Get colors in an svg image:
convert input.svg -depth 8 -unique-colors txt:-
- Can also use
-alpha Off -colors 255
- Can also use