Hi,
I have a problem with the convert function :
I runned the convert function thanks to a .bat file like that : "convert -negate N.png IN.png" and the same function never stop. In the batch windows i can see the same function appear again and again.
Since, each time i run a convert function, program never stop, run the same function and i have to stop it with Ctrl+C.
http://img15.hostingpics.net/pics/486262impr.png
Can you help me ?
Thank you in advance .
Amarok
Convert function problem
Re: Convert function problem
The input should come before the -negate:
Try enclosing your file name in " " as you have spaces in the filename.
Code: Select all
convert N.png -negate IN.png
Code: Select all
convert "N.png" -negate IN.png
-
- Posts: 12159
- Joined: 2010-01-23T23:01:33-07:00
- Authentication code: 1151
- Location: England, UK
Re: Convert function problem
What is the batch file named? If it is named "convert.bat", it is calling itself.
snibgo's IM pages: im.snibgo.com
Re: Convert function problem
Hi,
Yes indeed snibgo the name file was convert.bat i found myself later.
Thanks
Yes indeed snibgo the name file was convert.bat i found myself later.
Thanks