我正在努力了解如何在使用ImageMagick {{1}在使用采样图像转换文件类型时,如果不能可靠地更改密度/分辨率(不确定要调用它),至少要保留命令行工具
我从以200或300 dpi扫描的PDF文件开始。我希望能够将其转换为TIFF和PNG,以便与仅接受其中一种格式的各种OCR和QR代码扫描实用程序一起使用。
http://www.imagemagick.org/script/convert.php上的文档是" minimal"至少可以说。看起来可以应用的参数包括:
convert
我已经尝试了Image Settings:
-density geometry horizontal and vertical density of the image
-sampling-factor geometry
horizontal and vertical sampling factor
Image Operators:
-resample geometry change the resolution of an image
-resize geometry resize the image
-sample geometry scale image with pixel sampling
-scale geometry scale the image
和-density 200
,两者均无济于事。 tiff和png的转换似乎都是在72dpi进行,与源解析无关。
我想知道在这种情况下使用什么(即保留分辨率),但我也想了解我应该能够获得更多文档的地方,包括术语的定义,论证的格式等。