# file-5.33
JPEG image data, JFIF standard 1.02, resolution (DPI), density 72x72, segment length 16, Exif Standard: [TIFF image data, big-endian, direntries=7, orientation=upper-left, xresolution=98, yresolution=106, resolutionunit=2, software=Adobe Photoshop 7.0, datetime=2004:09:27 18:40:30], progressive, precision 8, 800x1027, frames 3
online meta/exif info viewer
没查到 TIFF 字眼,还有其它网站吗? 1
CEBBCAT 2021-09-12 15:00:08 +08:00 via Android
我猜是说这张照片是以 tiff 格式存储的 jpeg 图片
可能像 mkv 和 h264 之间的关系一样,照着这个方向谷歌一下呢? |
2
SoloCompany 2021-09-12 15:59:57 +08:00
应该是 exif 存储的原始信息不能作准
|
3
jim9606 2021-09-12 17:07:32 +08:00 1
EXIF 数据块是附在 JFIF 应用程序段的,EXIF 数据块内部使用 TIFF 定义的数据结构记录信息。可以说 EXIF 本身是为 TIFF 设计的,但后来被移植至 JFIF,较新版本的 EXIF 解决了原始 JFIF 与 EXIF 的兼容性问题。
file 应该是提取了 JFIF 中的应用程序段给 TIFF 解析器解读,所以显示为 TIFF image data 。 你要找的 marker 应该是 0xFFE0 和 0xFFE1,为了兼容,PS 应该会同时为两个字段填充元数据。 参考 ( https://www.media.mit.edu/pia/Research/deepview/exif.html ) |
4
starrystarry 2021-09-12 19:54:42 +08:00 1
A TIFF file, for example, can be a container holding JPEG (lossy) and PackBits (lossless) compressed images.
|