Convert command too complexe ??
Posted: 2009-02-12T22:29:25-07:00
Well first : congratulation to the IM Developer because IM is a very powerful tool , but hard to understand sometimes.
So my problem I have a command line which partially work as expected (here a short version):And the return error is:
As you could see here: only the first time stamp is adding on first shot
but I want a time stamp for each shot...
Is it possible to do this using only convert.exe in one command?
Thank in advance for your help.
PS: I'm using "ImageMagick 6.4.8-7 2009-01-16 Q16"
So my problem I have a command line which partially work as expected (here a short version):
Code: Select all
convert ^
-page +4+4 ^
( -size 128x24 xc:none -gravity center ^
-font "Arial" -pointsize 18 ^
-stroke #FFFFFF -strokewidth 3 -annotate 0 "00:01:20" -blur 0x8 ^
-stroke none -fill #000000 -annotate 0 "00:01:20" ^
+trim +size "_000.jpg[511x383]" ^
+swap -gravity southeast -geometry +1+1 -composite ) ^
-page +519+4 ^
( -size 128x24 xc:none -gravity center ^
-font "Arial" -pointsize 18 ^
-stroke #FFFFFF -strokewidth 3 -annotate 0 "00:02:40" -blur 0x8 ^
-stroke none -fill #000000 -annotate 0 "00:02:40" ^
+trim +size "_001.jpg[511x383]" ^
+swap -gravity southeast -geometry +1+1 -composite ) ^
-background none -mosaic ^
( +clone -shadow 80x1+4+4 ) ^
+swap -background #9A9A9A -mosaic ^
-filter lanczos -resize 1024 -quality 100 "Canvas.jpg"
Code: Select all
convert.exe: geometry does not contain image `none' @ statistic.c/GetImageBoundingBox/217.
but I want a time stamp for each shot...
Is it possible to do this using only convert.exe in one command?
Thank in advance for your help.
PS: I'm using "ImageMagick 6.4.8-7 2009-01-16 Q16"