Create low resolution image

Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
Post Reply
ssp

Create low resolution image

Post by ssp »

Hi,

I have high resolution images that I need to convert to low resolutions images without affecting the print size of the images. I use those images as FPO (For Position Only) in my desktop publishing application. I am using convert -resample 72 command and it does create low resolution image but when I place that image in DTP application the real estate (width and height) of those images is not same (way smaller) as the original image.

Is there way to achieve this using convert or any other command?

Thanks in advance.
Bonzo
Posts: 2971
Joined: 2006-05-20T08:08:19-07:00
Location: Cambridge, England

Re: Create low resolution image

Post by Bonzo »

What happens if you use:

Code: Select all

convert input.jpg -quality 50 output.jpg
You could add -strip as well to reduce the file size:

Code: Select all

convert input.jpg -strip -quality 50 output.jpg
Post Reply