这些不同的宽度,高度和分辨率参数的意义是什么?


3

像素分辨率为640 x 480的图像具有根据的其他尺寸和分辨率参数exiftool。我不确定它们是什么意思。

  1. 为什么“ X / Y分辨率”参数相同?
    它们是否不能反映图像的像素尺寸?
  2. Exif影像尺寸是什么意思,它与像素尺寸有何不同?
  3. 什么是焦平面?
    它与用于捕获该图像的设备有关系吗?

$ exiftool  evil1.jpg | egrep 'Width|Height|Resolution'
X Resolution                    : 180
Y Resolution                    : 180
Resolution Unit                 : inches
Exif Image Width                : 400
Exif Image Height               : 300
Focal Plane X Resolution        : 8114.285714
Focal Plane Y Resolution        : 8114.285714
Focal Plane Resolution Unit     : inches
Image Width                     : 640
Image Height                    : 480

如果需要,可以从以下位置获取原始图像:

 here=http://www.pythonchallenge.com/pc/return/evil1.jpg
 wget --user=huge --password=file $here

Answers:


1

X / Y分辨率以像素/英寸为单位。通常这些都是相同的,因为像素是正方形的。

ExifImageWidth / Height只是存储在元数据中的图像尺寸。这些实际上是无用的,在这种情况下甚至比无用更糟,因为它们与实际的JPEG图像尺寸(640x480)相矛盾

焦平面分辨率是相机成像传感器的像素分辨率,以像素/英寸为单位。


1

ExifImageWidth / ExifImageHeight(400x300)是存储在图像文件头(jpg,png,tiff ...)中的原始图像尺寸的EXIF元数据。

在这种情况下,它们与实际图像尺寸(640x480)相矛盾。

通常,这无关紧要。

但是,如果使用Adobe Acrobat从jpg创建PDF ,则PDF页面将变形,因为Acrobat会根据可用的EXIF信息构建页面。

避免这种情况的方法:使用Foxit PhantomPDF(根据实际的图像尺寸构建PDF页面)或有选择地删除图像文件的EXIF元数据。

操作方法:请参阅http://forums.adobe.com/message/5768320#5768320

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.