如何使用 PHP 从 PDF 文件中访问元数据 (XMP) 信息?我需要文件的高度和宽度。
问问题
4635 次
3 回答
2
ImageMagick似乎理解 PDF并Imagick::identifyImage()
返回一个包含大量信息的数组。
这个片段:
$img = new Imagick('test.pdf');
var_dump($img->identifyImage());
生成此渲染:
array(9) {
["imageName"]=>
string(9) "/test.pdf"
["format"]=>
string(30) "PDF (Portable Document Format)"
["geometry"]=>
array(2) {
["width"]=>
int(596)
["height"]=>
int(843)
}
["resolution"]=>
array(2) {
["x"]=>
float(72)
["y"]=>
float(72)
}
["units"]=>
string(9) "Undefined"
["type"]=>
string(14) "TrueColorMatte"
["colorSpace"]=>
string(3) "RGB"
["compression"]=>
string(9) "Undefined"
["fileSize"]=>
string(7) "37.6KBB"
}
于 2012-09-12T16:23:13.237 回答
1
您可能想看看 Zend Framework,特别是他们的Zend_Pdf组件。
从他们的手册页:
$pdf = Zend_Pdf::load($pdfPath);
echo $pdf->properties['Title'] . "\n";
echo $pdf->properties['Author'] . "\n";
$pdf->properties['Title'] = 'New Title.';
$pdf->save($pdfPath);
高温高压
于 2012-09-12T16:12:19.397 回答
1
如果您只想要宽度和高度,请使用
<?php
$pdffile = "filename.pdf";
$pdfinfo = shell_exec("pdfinfo ".$pdffile);
// find height and width
preg_match('/Page size:\s+([0-9]{0,5}\.?[0-9]{0,3}) x ([0-9]{0,5}\.?[0-9]{0,3})/', $pdfinfo,$heightandwidth);
$width = $heightandwidth[1];
$height = $heightandwidth[2];
?>
这将为您提供以 pts 为单位的高度和宽度。然后,您可以做一些简单的数学运算以转换为您正在寻找的任何单位。
于 2012-09-12T16:20:22.707 回答