words become blurred when convert pdf to image

Questions and postings pertaining to the development of ImageMagick, feature enhancements, and ImageMagick internals. ImageMagick source code and algorithms are discussed here. Usage questions which are too arcane for the normal user list should also be posted here.
Post Reply
tczf1128
Posts: 28
Joined: 2018-12-04T22:47:49-07:00
Authentication code: 1152

words become blurred when convert pdf to image

Post by tczf1128 »

Code: Select all

convert file.pdf -append  out.jpeg
https://test-1257746263.cos.ap-shanghai ... m/file.pdf

imagemagick version:7.0.8-23
User avatar
magick
Site Admin
Posts: 11064
Joined: 2003-05-31T11:32:55-07:00

Re: words become blurred when convert pdf to image

Post by magick »

Try this:

Code: Select all

convert -density 400 file.pdf -resize 25% -append  -quality 92 out.jpeg
User avatar
fmw42
Posts: 25562
Joined: 2007-07-02T17:14:51-07:00
Authentication code: 1152
Location: Sunnyvale, California, USA

Re: words become blurred when convert pdf to image

Post by fmw42 »

For IM 7, use magick, not convert and not magick convert.
tczf1128
Posts: 28
Joined: 2018-12-04T22:47:49-07:00
Authentication code: 1152

Re: words become blurred when convert pdf to image

Post by tczf1128 »

Thank you so much
Post Reply