magick
Create, edit, compose, or convert between image formats. This tool replaces `convert` in ImageMagick 7+. See `magick convert` to use the old tool in versions 7+. Some subcommands, such as `mogrify` have their own usage documentation.
More info →Subcommands (6)
Create a comparison image to visually annotate the difference between two images. See also: `magick`.
Convert between image formats, scale, join, and create images, and much more. Note: This tool (previously `convert`) has been replaced by `magick` in ImageMagick 7+.
Describe the format and characteristics of image files. See also: `magick`.
Capture some or all of an X server screen and save the image to a file. See also: `magick`.
Perform operations on multiple images, such as resizing, cropping, flipping, and adding effects. Changes are applied directly to the original file. See also: `magick`.
Tile images into a customizable grid. See also: `magick`.
Examples (7)
Convert between image formats
magick path/to/input_image.png path/to/output_image.jpgResize an image, making a new copy
magick path/to/input_image.jpg -resize 100x100 path/to/output_image.jpgResize an image by a percentage
magick path/to/input_image.png -resize 50% path/to/output_image.pngScale an image to have a specified file size
magick path/to/input_image.png -define jpeg:extent=512kb path/to/output_image.jpgCreate a GIF out of all JPEG images in the current directory
magick *.jpg path/to/images.gifCreate a checkerboard pattern
magick -size 640x480 pattern:checkerboard path/to/checkerboard.pngCreate a PDF file out of all JPEG images in the current directory
magick *.jpg -adjoin path/to/file.pdf