Page 1 of 1

Missing an image filename

Posted: 2013-09-03T08:52:39-07:00
by agriz

Code: Select all

/usr/bin/convert \( -size 670x548 \) \( 'temp/5225ffb8ef375YZ2JsoJQt3rQpMz.mpc' -rotate 180 \) -gravity NorthWest -composite \( 'temp/5225ffb8ef375YZ2JsoJQt3rQpMz.mpc[1x23+0+0]' -scale 624x23! -flip \) -gravity North -composite \( 'temp/5225ffb8ef375YZ2JsoJQt3rQpMz.mpc' -flip \) -gravity NorthEast -composite \( 'temp/5225ffb8ef375YZ2JsoJQt3rQpMz.mpc[23x1+0+0]' -scale 23x502! -flop \) -gravity West -composite \( 'temp/5225ffb8ef375YZ2JsoJQt3rQpMz.mpc[23x1+0+0]' -scale 23x502! \) -gravity East -composite \( 'temp/5225ffb8ef375YZ2JsoJQt3rQpMz.mpc' -flop \) -gravity SouthWest -composite \( 'temp/5225ffb8ef375YZ2JsoJQt3rQpMz.mpc[1x23+0+0]' -scale 624x23! \) -gravity South -composite \( 'temp/5225ffb8ef375YZ2JsoJQt3rQpMz.mpc' \) -gravity SouthEast -composite 'temp/1_5225ffb8ef463I6LfFrRtKmHQOCR.mpc
'Array ( [0] => convert: missing an image filename `temp/1_5225ffb8ef463I6LfFrRtKmHQOCR.mpc' @ convert.c/ConvertImageCommand/2800. )

Re: Missing an image filename

Posted: 2013-09-03T09:32:24-07:00
by snibgo
If you run it from the command prompt, you might get a more helpful error message.

The "\( -size 670x548 \)" does nothing. Nor does the first "-gravity NorthWest -composite", becuase there is only one image so far. Perhaps you intended "xc:white" or something after the size, eg "\( -size 670x548 xc:white \)"

Re: Missing an image filename

Posted: 2013-09-03T09:43:40-07:00
by agriz
snibgo wrote:If you run it from the command prompt, you might get a more helpful error message.

The "\( -size 670x548 \)" does nothing. Nor does the first "-gravity NorthWest -composite", becuase there is only one image so far. Perhaps you intended "xc:white" or something after the size, eg "\( -size 670x548 xc:white \)"
Awesome.. Thanks a lot. A careless mistake!