-scene doesn't work

Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
Post Reply
loru88
Posts: 4
Joined: 2012-02-24T02:18:35-07:00
Authentication code: 8675308

-scene doesn't work

Post by loru88 »

I need to montage some images and give name starting from index 2
I have used this command

Code: Select all

montage -density 300 album4.pdf[1-99] -tile 2x1 -quality 80 -geometry +0+0 -resize 800 -scenes 2 album4_2012_%02d.jpg
but it doesn't name my files from album4_2012_02d.jpg
it ignores the -scenes and start from album4_2012_00.jpg
Is this a bug? or I'm doing some errors?
User avatar
fmw42
Posts: 25562
Joined: 2007-07-02T17:14:51-07:00
Authentication code: 1152
Location: Sunnyvale, California, USA

Re: -scene doesn't work

Post by fmw42 »

montage -density 300 album4.pdf[1-99] -tile 2x1 -quality 80 -geometry +0+0 -resize 800 -scenes 2 album4_2012_%02d.jpg
try -scene not -scenes

see
http://www.imagemagick.org/script/comma ... .php#scene
Post Reply