How to launch the program from PERL script under Windows server?
Below you can see example of launching Image Converter Command Line from PERL script under
Windows server:
Example:
#!/usr/bin/perl
print "Content-Type: text/html\n\n";
$ExecString = 'C:\Progra~1\ImageConverter Plus\ICPCL.exe -convertto tiff keep_prop:no -source C:\In\ic1.bmp -dest C:\out -oper Resize size:800 1256 exec $ExecString;
print "Content-Type: text/html\n\n";
$ExecString = 'C:\Progra~1\ImageConverter Plus\ICPCL.exe -convertto tiff keep_prop:no -source C:\In\ic1.bmp -dest C:\out -oper Resize size:800 1256 exec $ExecString;