1
Imagemagick使用resample选项进行转换
我正在从更大的图像创建缩略图,并且已成功使用此命令一段时间: convert FILE -resize "64x" -crop "64x64+0+16" +repage -strip OUTFILE 我还做了一些与问题无关的其他处理。我意识到这根本不会调整分辨率,所以如果我使用300dpi图像,它最终会在某些设备上显示得非常小。我想将其重新取样为72x72,所以我一直在尝试使用此命令: convert FILE -resize "64x" -crop "64x64+0+16" +repage -strip -resample 72x72 OUTFILE 并且期望将300dpi的64x64图像重新采样为72dpi的64x64图像,但相反,我的尺寸和密度非常有趣。 这是原始和后处理文件的“识别”输出,没有重新采样: coneybeare $ convert "aa.jpg" -crop "64x64+0+16" +repage -strip "aa.png" coneybeare $ for image in `find . -type f`; do identify $image; identify -verbose $image | egrep …