thanks for clearifying!
regards,
stephan
Search found 4 matches
- 2011-11-02T01:26:59-07:00
- Forum: Users
- Topic: convert huge pdf to jpeg -> ultraslow performacne
- Replies: 6
- Views: 13454
- 2011-11-01T05:12:14-07:00
- Forum: Users
- Topic: convert huge pdf to jpeg -> ultraslow performacne
- Replies: 6
- Views: 13454
Re: convert huge pdf to jpeg -> ultraslow performacne
perhaps see http://www.imagemagick.org/Usage/files/#massive as you may be running out out memory Thanks for pointing me there. I was now successful using: convert -limit area 8192 -limit memory 8192 -density 300 khm6.pdf khm6.jpg It finished in less than 10 minutes! Great! I also tried the stream ...
- 2011-11-01T04:15:39-07:00
- Forum: Users
- Topic: convert huge pdf to jpeg -> ultraslow performacne
- Replies: 6
- Views: 13454
Re: convert huge pdf to jpeg -> ultraslow performacne
Thanks for the hint - but this pdf consists only of one pagemagick wrote:Try converting the first page:
- convert 'image.pdf[0]' image.jpg
- 2011-10-30T13:33:45-07:00
- Forum: Users
- Topic: convert huge pdf to jpeg -> ultraslow performacne
- Replies: 6
- Views: 13454
convert huge pdf to jpeg -> ultraslow performacne
Hi, I'm using imagemagick's convert-command for converting pdf-files to jpeg. My machine runs on linux, it has 4GB RAM and a core dual processor. Now I've got a quite big pdf which I want to convert: 180*180 cm with 300 dpi. I want to convert this to a jpeg file of approximately 20000*20000 pixels ...