hi
i have a problem . i wanna convert a pdf file to png ... i search in web and use many commands.... but i don't convert file . do i need install adding file/ lib ?
// i using this code:
magick convert 01.pdf 01.png
myOS: win8.1
IM: 7.0.8
Thanks
pdf to image problem
- fmw42
- Posts: 25562
- Joined: 2007-07-02T17:14:51-07:00
- Authentication code: 1152
- Location: Sunnyvale, California, USA
Re: pdf to image problem
You need to install the Ghostscript delegate into your Imagemagick. Imagemagick cannot find Ghostscript.
- fmw42
- Posts: 25562
- Joined: 2007-07-02T17:14:51-07:00
- Authentication code: 1152
- Location: Sunnyvale, California, USA
Re: pdf to image problem
Code: Select all
magick -density 288 convert 01.pdf -resize 25% 01.png
Re: pdf to image problem
Thank you.fmw42 wrote: ↑2018-10-16T23:43:14-07:00Nominal density is 72. So 72*4=288 and thus I resize by the inverse of 4 = 1/4 = 25%Code: Select all
magick -density 288 convert 01.pdf -resize 25% 01.png
it's worked