From 924c28cb24a838f02cf893524f75b822577cc01d Mon Sep 17 00:00:00 2001 From: Waldir Pimenta Date: Mon, 11 Sep 2017 12:05:15 +0100 Subject: [PATCH] mogrify: tweak descriptions --- pages/common/mogrify.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/pages/common/mogrify.md b/pages/common/mogrify.md index 657ec5edb..c2554f3fc 100644 --- a/pages/common/mogrify.md +++ b/pages/common/mogrify.md @@ -1,12 +1,13 @@ # mogrify -> Tool that allows making operations on multiple images ie. resizing, cropping, flipping, adding effects. Replaces the original file. +> Make operations on multiple images, such as resizing, cropping, flipping, and adding effects. +> Changes are applied directly to the original file. - Resize all jpg images in the folder to 50% of their initial size: `mogrify -resize {{50%}} {{*.jpg}}` -- Resize all images starting with DSC to 800x600: +- Resize all images starting with "DSC" to 800x600: `mogrify -resize {{800x600}} {{DSC*}}` @@ -14,10 +15,10 @@ `mogrify -format {{jpg}} {{*.png}}` -- Halve the saturation for all image files in the folder: +- Halve the saturation of all image files in the folder: `mogrify -modulate {{100,50}} {{*}}` -- Double the brightness for all image files in the folder: +- Double the brightness of all image files in the folder: `mogrify -modulate {{200}} {{*}}`