changes per PR review / capitalization of acronyms

coverage
Waldir Pimenta 2017-09-16 12:19:29 +01:00 committed by Agniva De Sarker
parent 924c28cb24
commit cd31c69479
1 changed files with 5 additions and 5 deletions

View File

@ -1,9 +1,9 @@
# mogrify # mogrify
> Make operations on multiple images, such as resizing, cropping, flipping, and adding effects. > Perform operations on multiple images, such as resizing, cropping, flipping, and adding effects.
> Changes are applied directly to the original file. > Changes are applied directly to the original file.
- Resize all jpg images in the folder to 50% of their initial size: - Resize all JPEG images in the folder to 50% of their initial size:
`mogrify -resize {{50%}} {{*.jpg}}` `mogrify -resize {{50%}} {{*.jpg}}`
@ -11,14 +11,14 @@
`mogrify -resize {{800x600}} {{DSC*}}` `mogrify -resize {{800x600}} {{DSC*}}`
- Convert all png images in the folder to jpg: - Convert all PNG images in the folder to JPEG:
`mogrify -format {{jpg}} {{*.png}}` `mogrify -format {{jpg}} {{*.png}}`
- Halve the saturation of all image files in the folder: - Halve the saturation of all image files in the current directory:
`mogrify -modulate {{100,50}} {{*}}` `mogrify -modulate {{100,50}} {{*}}`
- Double the brightness of all image files in the folder: - Double the brightness of all image files in the current directory:
`mogrify -modulate {{200}} {{*}}` `mogrify -modulate {{200}} {{*}}`