
mogrify
List of commands for mogrify:
-
mogrify:tldr:0a8c7 mogrify: Convert all PNGs in the directory to JPEG.$ mogrify -format ${jpg} ${*-png}try on your machineexplain this command
-
mogrify:tldr:43568 mogrify: Resize all JPEG images in the directory to 50% of their initial size.$ mogrify -resize ${50%} ${*-jpg}try on your machineexplain this command
-
mogrify:tldr:92abb mogrify: Halve the saturation of all image files in the current directory.$ mogrify -modulate ${100,50} ${*}try on your machineexplain this command