PDF の最初のページを画像ファイルに変換しようとしています。
次のコードがあります。
$im = new imagick('/images/test.pdf[0]');
$im->setImageFormat("jpg");
$page=$im->queryFormats();
echo "<pre>";
print_r ($page);
echo "</pre>";
ただし、次のようなエラー メッセージが表示されます。
Uncaught exception 'ImagickException' with message 'unable to open image
私が変更した場合:
$im = new imagick('/images/test.pdf[0]');
に:
$im = new imagick('/images/test.pdf');
次のエラーが表示されます。
Uncaught exception 'ImagickException' with message 'Unable to read the file
PDF へのパスが正しいことは確かですが、これを解決する方法がわかりません。誰でもこれで私を助けることができますか?