Search found 3 matches

by ldegruchy
2013-03-08T15:35:07-07:00
Forum: Users
Topic: PDF to images as STDOUT
Replies: 5
Views: 4748

Re: PDF to images as STDOUT

What version of ImageMagick are you using? We're using ImageMagick 6.8.3-8 and we're getting the same results as your Ghostscript command. That is 3 JPEG images concatenated together. Here is our use case: convert rose: wizard: logo: test.pdf gs -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -r150 -sDEVICE ...
by ldegruchy
2013-03-08T14:05:10-07:00
Forum: Users
Topic: PDF to images as STDOUT
Replies: 5
Views: 4748

Re: PDF to images as STDOUT

ImageMagick creates 3 jpeg images and concatenates them. You only see one image with your viewers because that is all that is supported for JPEG. It is not a multi-frame image format like TIFF or GIF, for example. You misunderstood me. I was able to create 3 separate jpegs when outputting the ...
by ldegruchy
2013-03-08T12:53:50-07:00
Forum: Users
Topic: PDF to images as STDOUT
Replies: 5
Views: 4748

PDF to images as STDOUT

I'm trying to use the convert command to convert a PDF into a series of images in STDOUT. Thus far, I've only been successful in doing this when call the command with the destination filename(s). convert test.pdf test.jpg results in the following files on the filesystem: test-0.jpg test-1.jpg test-2 ...