我正在使用Imagick工具将PDF文件(包含unicodes,数字,数学方程,渐变)转换为Image。
$pdf = new Imagick();
$pdf->readimage($pdfFile);
$pdf->resetiterator();
$image = $pdf->appendimages(true);
$image->setimageformat(substr($destination, (strlen($destination) - 3), strlen($destination)));
$status = $image->writeimage($destination);
$image->clear();
$pdf->clear();
但现在我需要在PDF文件中搜索特定的字符串,然后将它们拆分并转换为图像。说这是一个pdf文档:
[integration]
//any integral equation
//another equation
[/integration]
[integration]
//some text and figures
[/integration]
现在我想将PDF文件拆分为两个,从[integration]
开始[/integration]
结束。最后将它们转换成图像。所以第一张图片将包含:
//any integral equation
//another equation
第二个:
//some text and figures
请提供任何代码/想法。