You might want to check the path forward and back slashes
exec(java -jar "C:\batik\batik-rasterizer.jar" -m image/png -d
"C:/pathtoimg/temp/2fa8af078803491746235057c546c1b6.png" -w 800
"C:/pathtoimg/temp/2fa8af078803491746235057c546c1b6.svg");
might try forward slash:
exec('java -jar "C:/batik/batik-rasterizer.jar" -m image/png -d
"C:/pathtoimg/temp/2fa8af078803491746235057c546c1b6.png" -w 800
"C:/pathtoimg/temp/2fa8af078803491746235057c546c1b6.svg"');
or forward slash w/ param path as well:
exec('java -jar "C:/batik/batik-rasterizer.jar" -m C:/pathto/image/png -d
"C:/pathtoimg/temp/2fa8af078803491746235057c546c1b6.png" -w 800
"C:/pathtoimg/temp/2fa8af078803491746235057c546c1b6.svg"');
UPDATE sorry i think it's backslash
might try back slash:
exec('java -jar "C:\batik\batik-rasterizer.jar" -m image\png -d
"C:\pathtoimg\temp\2fa8af078803491746235057c546c1b6.png" -w 800
"C:\pathtoimg\temp\2fa8af078803491746235057c546c1b6.svg"');
or back slash w/ param path as well:
exec('java -jar "C:\batik\batik-rasterizer.jar" -m C:\pathto\image\png -d
"C:\pathtoimg\temp\2fa8af078803491746235057c546c1b6.png" -w 800
"C:\pathtoimg\temp\2fa8af078803491746235057c546c1b6.svg"');
Also as Barkermn01 has pointed out exec() needs a string input