是否有一个命令行工具可以显示两个 BMP 之间的差异,以便以人性化的方式返回其标头值的差异?因此,将会有宽度、高度、图像大小等差异的信息。
答案1
打开终端并输入:
sudo apt-get install imagemagick
identify 'path/to/image1.bmp'
identify 'path/to/image2.bmp'
示例输出:
/home/noah/Pictures/image1.bmp BMP 2515x2520 2515x2520+0+0 8-bit PseudoClass 256c 6.341MB 0.050u 0:00.019
答案2
您可以使用file
命令来获取有关多个文件的信息。
file 2.1.bmp 2.2.bmp 2.3.bmp
2.1.bmp: PC bitmap, Windows 3.x format, 640 x 300 x 24 2.2.bmp: PC bitmap, Windows 3.x format, 640 x 300 x 24 2.3.bmp: PC bitmap, Windows 3.x format, 640 x 300 x 24
(因为我的所有三个文件大小相同,但您可以发现文件的宽度、高度和深度存在差异。)