Re: Crop a large image into multiple smaller ones
Posted: 2008-05-07T11:51:52-07:00
you need to specify the -quality setting for your jpg output file. IM uses a default of -quality 80. Your input image may have been at a lower quality than the outputs using the default quality of 80. You can set it lower if you want smaller jpg file sizes. Also add +repage to your command. Also put your input image right after "convert".
convert big_file -crop 120x120 -quality 50 +repage small_file.jpeg
convert big_file -crop 120x120 -quality 50 +repage small_file.jpeg