php
我对文件结构有疑问。
我想运行一个脚本来生成一堆pdf
文件的图像。
我的问题是实际pdf
文件位于不同的文件夹和结构中。
例如:
pdf可以位于
/test/book/pdf/test.pdf.
另一个可能在
/server/pdfs/link/dummy.pdf.
文件系统中有数千个pdfs
文件,我Imagick
用来从pdfs
.
我不确定如何找到所有的,也不确定如何在构造函数pdf
中指定文件路径。imagick
$im = new imagick('file path to pdf here'); //I don't know how to specify the file path here...
$im->setImageFormat( "jpg" );
谁能给我一个提示?非常感谢!