jpeg # 查看图片的Orientation旋转信息

有时用mediainfo获取图片信息如下:

Format                                   : JPEG
File size                                : 360 KiB

Image
Format                                   : JPEG
Width                                    : 4 032 pixels
Height                                   : 3 024 pixels
Color space                              : YUV
Chroma subsampling                       : 4:2:0
Bit depth                                : 8 bits
Compression mode                         : Lossy
Stream size                              : 360 KiB (100%)

但实际图片是竖屏的。

如何获取jpg图片的旋转信息呢?
答案是: 可以用jhead工具获取
下载地址: http://www.sentex.net/~mwandel/jhead/

windows下 使用命令格式:

jhead.exe test.jpg

含旋转信息的图片:

File name    : C:\eab1.jpg
File size    : 368611 bytes
File date    : 2018:08:14 16:04:39
Resolution   : 4032 x 3024
Orientation  : rotate 90
JPEG Quality : 27
======= IPTC data: =======

可以看到Orientation : rotate 90旋转信息。

不含旋转的图片是这样的:

File name    : C:\0.jpg
File size    : 21317 bytes
File date    : 2018:06:05 14:28:29
Resolution   : 600 x 480
Jpeg process : Progressive
JPEG Quality : 85

References:

http://www.sentex.net/~mwandel/jhead/

你可能感兴趣的:(jpeg # 查看图片的Orientation旋转信息)