我通常扫描多页文件,并且我使用一种简单的方法。
for f in ???\.pbm; do
convert -compress Group4 $f ${f%pbm}tiff;
done;
tiffcp *\.tiff o.tiff;
tiff2pdf o.tiff -o o.pdf但这样我可以得到好的TIFF和非常糟糕的PDF。
下面是identify的输出
(每页相似)
Image: o.tiff
Format: TIFF (Tagged Image File Format)
Class: DirectClass
Geometry: 1248x1649+0+0
Resolution: 72x72
Print size: 17.3333x22.9028
Image: o.pdf
Format: PDF (Portable Document Format)
Class: DirectClass
Geometry: 17x23+0+0
Resolution: 72x72
Print size: 0.236111x0.319444我试着在所有步骤上使用密度设置,但都没有帮助。
发布于 2012-08-21 04:55:19
在tiff2pdf步骤中,尝试使用以下命令:
tiff2pdf -p A4 -F -o o.pdf o.tiff-p A4:强制使用A4页面大小(您也可以使用letter或legal)。-F:强制TIFF完全填满页面。https://stackoverflow.com/questions/9856262
复制相似问题