私は通常、複数ページのファイルをスキャンしますが、簡単な方法を使用しています。
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
すべてのステップで密度設定を使用しようとしましたが、何も役に立ちませんでした。間違いがどこにあるか知っている人はいますか?