Phatricko
Programmer
- Jun 3, 2008
- 4
I'm trying to use a program called Image Converter Plus on my website but I know absolutely nothing about web programming. This is the example they give for PERL.
I played with it and got it to work on my computer but I don't know anything about web programming and was just wondering if someone could please help direct me on what needs to be done. My server does support PERL. Any little bit of advice can be a BIG help.
Code:
#!/usr/bin/perl
print "Content-Type: text/html\n\n";
$ExecString = 'C:\Progra~1\ImageConverter Plus\ICPCL.exe -convertto tiff –source C:\In\ic1.bmp –dest C:\out dither:no -oper Resize size:800 1256 keep_prop:no method: bilinear';
exec $ExecString;