尝试使用bash脚本和tiff2pdf将一堆tiff转换为web ready pdf,但我的测试套件出现了一个非常奇怪的问题。当我ls -l
...
wmcduff@wmcduffscomp:~/Desktop/testdir$ ls -l
total 339896
-rw------- 1 joe joe 2165668 Feb 17 11:48 191611032571.pdf
-rw-rw-r-- 1 joe joe 28114948 Feb 17 11:51 1948010211.pdf
-rw------- 1 joe joe 28114113 Feb 17 11:42 1948010211.tif
-rw-rw-r-- 1 joe joe 29499021 Feb 17 11:51 1948010212.pdf
.
.
.
但是,如果我identify -verbose 1948010211.pdf
...
wmcduff@wmcduffscomp:~/Desktop/testdir$ identify -verbose 1948010211.pdf
Image: 1948010211.pdf
Format: PDF (Portable Document Format)
Class: DirectClass
Geometry: 1085x1456+0+0
Resolution: 72x72
Print size: 15.0694x20.2222
Units: Undefined
Type: PaletteAlpha
Endianess: Undefined
Colorspace: sRGB
Depth: 16/8-bit
Channel depth:
red: 8-bit
green: 8-bit
blue: 8-bit
alpha: 1-bit
.
.
.
Properties:
date:create: 2017-02-17T14:30:11-08:00
date:modify: 2017-02-17T14:30:11-08:00
pdf:HiResBoundingBox: 1085.04x1455.84+0+0
pdf:Version: PDF-1.1
signature: b3d978e3b2e7784867b27da677b7288e6674dfcaeb92a8c58f9faf19b20f0655
Profiles:
Profile-icc: 2576 bytes
Description: Artifex Software sRGB ICC Profile
Manufacturer: Artifex Software sRGB ICC Profile
Model: Artifex Software sRGB ICC Profile
Copyright: Copyright Artifex Software 2011
Artifacts:
filename: 1948010211.pdf
verbose: true
Tainted: True
Filesize: 2.395MB
Number pixels: 1.58M
Pixels per second: 39.49MB
User time: 0.040u
Elapsed time: 0:01.040
Version: ImageMagick 6.7.7-10 2016-11-29 Q16 http://www.imagemagick.org
知道为什么文件大小会如此彻底地不同?我的bash脚本(tiff2pdf -u i -w 15.07 -l 20.22 -x 300 -y 300 -r o -o "${file/%.tif/.pdf}" "$file"
)中的命令是否有问题导致这么大的文件?
答案 0 :(得分:1)
您可能会认为Filesize
输出中观察到的identify -verbose
具有误导性:refers to the size使用BLOB in memory,这与identify -verbose
不同文件消耗的存储量。
除非您需要ls
命令生成的其他信息部分,否则请坚持使用pdfinfo
实用程序提供的文件大小。 (或者,如果您使用的是Mac OS X,则可以使用其他工具,例如zip
(Xpdf的一部分),甚至是mdls,这两种工具都会报告PDF的文件大小)。