鉴于图像文件的名称和位置为字符串,我想确定一下图像类型是什么,例如PNG,JPG,BMP等。
答案 0 :(得分:1)
我决定使用ImageMagick的identify -format "%m" filename
命令,因为它可以处理用户可以将文件扩展名更改为另一张图像,但内容保持不变的情况。
示例运行名为test.png
的图像,其内容为PNG格式:
identify -format "%m" test.png
PNG
mv test.png test.jpg
identify -format "%m" test.jpg
PNG
我想要的结果是什么。