Hello,
I'm trying to run a .bat file from a webpage. In my .bat file i have the following line:
nconvert -out gif -colors 256 -o d:\wwwroot\gif\ "d:\wwwroot\tiff\test1.tif"
what i'm trying to do is convert the test1.tif to a .gif file but i'm getting this error:
Error: Can't create file (D:\Udvikling\Conset\Gif\test1.tif)
What am I doing wrong ?
/Martin
Using Nconvert from .bat file?
Moderators: XnTriq, helmut, xnview
I found the solution :o)
Hello,
By changing the line to :
nconvert -o d:\wwwroot\gif\test1.gif -out gif -colors 256 d:\wwwroot\tiff\test1.tif
Every thing just works fine
/Martin
By changing the line to :
nconvert -o d:\wwwroot\gif\test1.gif -out gif -colors 256 d:\wwwroot\tiff\test1.tif
Every thing just works fine

/Martin