Hello,
I resized a bunch of directories with mogrify using the following command:
Code: Select all
find . -name "*.png" -exec mogrify -resize 23.916% {} \;
Some of the images were changed from RGB to grayscale, and in the process suffered a color shift. They were mostly grayscale, but must not have been completely so because they look different now. My question is, how does mogrify determine it should change the color mode? Secondly, how do I prevent this?