Hello,

I want to use jpeg2swf to convert images to SWFs.

To do that I wrote a php script:

<?php
$toolspath = "c:\swftools\ \"; // Windows
$toolanhang = ".exe"; // Windows
$dummySWF = "dummies/dummy.swf";
$libraryImage = "images/myImage.jpg";


$jpeg2swf = $toolspath . 'jpeg2swf' . $toolanhang . ' ' . $dummySWF . ' ' . $libraryImage;
$jpeg2swf_meldung = system($jpeg2swf);
?>

This script and the directories "dummies" and "images" are all in the same directory.
All read/write preveleges are correctly set.

The SWF will not be created!
What is wrong with this?

Benedikt

Reply via email to