系统相关
首页 > 系统相关> > 从php / linux获取pdf的布局模式(横向或纵向)

从php / linux获取pdf的布局模式(横向或纵向)

作者:互联网

给定PDF,如何使用PHP lib或linux命令行工具获得PDF的布局模式(或相对宽度/高度)?

使用http://www.tecnick.com/public/code/cp_dpage.php?aiocp_dp=tcpdf可以在新PDF上设置此变量,但对于Adobe中的现有pdf可以设置此变量.

考虑将pdf转换为ps,或以其他方式使用gs-例如先将其转换为图像,然后获取其宽度和高度.这是最好的方法吗?

解决方法:

我正在使用的解决方案是使用ghostscript将第一页打印到图像上,然后获取图像尺寸

$cmd = 'gs -dSAFER -dBATCH -dNOPAUSE -dFirstPage=1 -dLastPage=1 -sDEVICE=png16m -r400 -dTextAlphaBits=4 -dGraphicsAlphaBits=4 -sOutputFile="'.$complete_file_path.'/p%d.png" "'.$complete_file_path.'/'.$this->pdffilename.'"';
        $result = $this->proc( $cmd );
        list($width, $height, $type, $attr) = getimagesize($complete_file_path.'/'.$pngfilename);

标签:pdf,ghostscript,cups,linux,php
来源: https://codeday.me/bug/20191107/2002813.html