I'm invoking the following command to convert an input jpeg that I know is sRGB 3-channel into a single-channel gray image as follows:
convert my-sRGB.jpg -grayscale Rec601Luma my-8bit-gray.jpg
When I run identify on my-8-bit-gray.jpg, it is 8-bit grayscale. But the size is about the same as the input's.
I expected it to be roughly 1/3 of the original size. So, is there an option I need to plug in to make sure the output image is the reduced size?
Thanks, Charles