Problems selecting frames

Post any defects you find in the released or beta versions of the ImageMagick software here. Include the ImageMagick version, OS, and any command-line required to reproduce the problem. Got a patch for a bug? Post it here.
User avatar
fmw42
Posts: 25562
Joined: 2007-07-02T17:14:51-07:00
Authentication code: 1152
Location: Sunnyvale, California, USA

Re: Problems selecting frames

Post by fmw42 »

seedy

Re: Problems selecting frames

Post by seedy »

Thanks for the info re:changelog

I have confirmed this is now working for me in 6.5.5.0. Thanks!
seedy

Re: Problems selecting frames

Post by seedy »

Just a note on the file name of the output file. If I specify the page range:

Code: Select all

convert.exe input.pdf[2-4] output.png
My output files are output-2.png, output-3.png, output-4.png, without the use of -scene which is very nice. If i specify a page like so:

Code: Select all

convert.exe input.pdf[2] output.png
My output file is output.png. It would be nice if this was consistent and called the file output-2.png even though I have only specified a single page.
User avatar
anthony
Posts: 8883
Joined: 2004-05-31T19:27:03-07:00
Authentication code: 8675308
Location: Brisbane, Australia

Re: Problems selecting frames

Post by anthony »

You can force a single image by using a %d or better %02d in the output filename.
I think +adjoin will also do it but I am not certain about that in this case.

Of course if you add a extra image say "null:" then you have two images and you can just remove the last one :-)
Anthony Thyssen -- Webmaster for ImageMagick Example Pages
https://imagemagick.org/Usage/
seedy

Re: Problems selecting frames

Post by seedy »

Yeah I am using the %d in the filename. Just saying for consistency sake it might be better for it to behave the same if there is one or multiple frames selected.
User avatar
anthony
Posts: 8883
Joined: 2004-05-31T19:27:03-07:00
Authentication code: 8675308
Location: Brisbane, Australia

Re: Problems selecting frames

Post by anthony »

Sorry that would be confusing as users will never get the file name they requested!!!
Anthony Thyssen -- Webmaster for ImageMagick Example Pages
https://imagemagick.org/Usage/
Post Reply