1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 11:24:56 +02:00
tldr/pages/common/mogrify.md
2019-06-04 16:29:40 -03:00

25 lines
733 B
Markdown

# mogrify
> Perform operations on multiple images, such as resizing, cropping, flipping, and adding effects.
> Changes are applied directly to the original file.
> More information: <https://imagemagick.org/script/mogrify.php>.
- Resize all JPEG images in the directory to 50% of their initial size:
`mogrify -resize {{50%}} {{*.jpg}}`
- Resize all images starting with "DSC" to 800x600:
`mogrify -resize {{800x600}} {{DSC*}}`
- Convert all PNG images in the directory to JPEG:
`mogrify -format {{jpg}} {{*.png}}`
- Halve the saturation of all image files in the current directory:
`mogrify -modulate {{100,50}} {{*}}`
- Double the brightness of all image files in the current directory:
`mogrify -modulate {{200}} {{*}}`