Page 1 of 1

EPS thumbnails are blurry

Posted: 2019-10-11T13:50:29-07:00
by jaideep13
Use the following command to generate EPPS thumbnail and notice the thumbnails are blurry

convert -define jpeg:size=319x319 <path to EPS file> -thumbnail 319x319 cq5dam.thumbnail.319.319.png

Re: EPS thumbnails are blurry

Posted: 2019-10-11T14:16:00-07:00
by fmw42
There is no -define jpeg:size. There is a -define jpeg:extent={size} where size is in kb. See https://imagemagick.org/Usage/formats/#jpg_write. Also add -density XX before reading the pdf to get better quality.

Code: Select all

convert -density 300 <path to EPS file> -thumbnail 319x319 -define jpeg:extent={size} cq5dam.thumbnail.319.319.png
Fill in your desired outfile file size in kb