mirror of
https://github.com/foo-dogsquared/wiki.git
synced 2025-03-18 06:19:08 +00:00

Just the title anyways. It makes easier to find aside from the file name and also makes it clear in case I refer to them from other documents.
1.2 KiB
1.2 KiB
Command line: ImageMagick
The swiss army knife for picture manipulation in the command line. For future reference, this mainly use v7 which has Git-style interface (which is way better, IMO).
Subcommands
convert
- resize images, convert between formats, apply filter effectsidentify
- print information on the imagemogrify
- similar toconvert
except modifies the original file
Examples
A comprehensive tool calls for a comprehensive introduction.
Resize an image by half
magick resize $INPUT -resize 50% $OUTPUT
You can find out various geometry options from the documentation.