0
嗨我使用此代碼將PDF轉換爲SWF我有在我的網站在本地服務器的pdf2swf.exe文件,我想要移動PDF爲1.pdf到該pdf2swf.exe使用命令行的擊打實在不行可以轉換我不知道爲什麼,它的代碼enter code here
PDF到SWF轉換由cmd在php
<?php
$software_path ="C:\\wamp\www\wellelafa\SWFTools\pdf2swf" ;
$pdf_path ="C:\\wamp\www\wellelafa\SWFTools\1.pdf" ;
$argument = "-o";
$swf_output ="C:\\wamp\www\wellelafa\1.swf" ;
$cmd ="$software_path $pdf_path $argument $swf_output";
$WshShell = new COM("WScript.Shell");
$oExec = $WshShell->Run("cmd /C $cmd ", 0, true);
?>