如何使用exec()函數將PDF文件的文件名中包含空格的PDF文件轉換爲
對於例如:文件次數1.pdf到文件1.JPG
<?php
$pdf = "file 1.pdf";
$pdf_first_page = "file 1.pdf[0]";
$jpg = str_replace("pdf", "jpg", $pdf);
exec ("convert $pdf_first_page $jpg");
?>
,我發現了以下錯誤:
convert.exe: unable to open image `file 1.pdf': No such file or directory @ error/blob.c/OpenBlob/2702.
convert.exe: no images defined `file 1.jpg' @ error/convert.c/ConvertImageCommand/3257.
[轉換PDF與PHP JPG圖片](http://stackoverflow.com/questions/13600598/convert-pdf-to-jpg-image-with-php) – Nasreddine
轉換PDF文件可能的複製文件名中沒有空格就是爲我工作的。我在文件名中包含空格的文件遇到問題。 –
鏈接的問題也爲此提供了一個解決方案,即將文件名放在引號之間 – Nasreddine