exif_read_data() - exif函数(可交换图像信息)
exif_read_data()
(PHP 4 >= 4.2.0, PHP 5, PHP 7)
从JPEG或TIFF文件中读取EXIF头信息
说明
exif_read_data(string $filename[,string $sections=NULL
[,bool $arrays= false[,bool $thumbnail= false]]]): arrayexif_read_data()函数从JPEG或TIFF图像文件中读取EXIF头信息。这样就可以读取数码相机产生的元数据。
EXIF头信息往往存在于数码相机生成的 JPEG/TIFF 图像中,但不幸的是每个数码相机制造商的标记都不同,因此(编写代码时)不能依赖于某个特定的 Exif 头信息。
Height 和 Width 是用和getimagesize()一样的方法计算的,因此它们的值不能是任何返回的头信息的部分。此外 html 是一个 height/width 的文本字符串可以用于普通的HTML中。
当一个 Exif 头信息包含有一个 Copyright 时注意它本身可以包含两个值。解决方案和 Exif 2.10 标准不一致,COMPUTED 区段会同时返回 Copyright.Photographer 和 Copyright.Editor,但是 IFD0 区段则包含有一个字节数组用 NULL 字符分隔开两个项目。或者只有第一项如果数据类型错误的话(Exif 的正常行为)。COMPUTED 也会包含 Copyright,要么是原始的版权字符串,要么是逗号分隔的摄像与编辑的版权信息。
UserComment 标记和 Copyright 有同样的问题。它也可以存储两个值,第一个是使用的编码方式,第二个是其值本身。如果这样则 IFD0 区段仅包含编码方式或者一个字节数组。COMPUTED 区段将存储两个值到 UserCommentEncoding 和 UserComment。UserComment 在两种情况下都可用因此应该优先使用它而不是 IFD0 区段中的该值。
exif_read_data()还会根据 EXIF 规范(» http://exif.org/Exif2-2.PDF,第 20 页)来验证 EXIF 数据。
Note:Windows ME/XP 在连接到数码相机时能清除掉 Exif 头信息。
参数
$filename被读取的图像文件名。不能是URL。
$sections是需要存在于文件中的逗号分隔的区段列表用来产生结果数组。如果未找到所请求的区段则返回值为FALSE
。
FILE | FileName, FileSize, FileDateTime, SectionsFound |
COMPUTED | html,Width,Height,IsColor,可能有更多其它的。Height 和 Width 是用和getimagesize()一样的方法计算的,因此它们的值不能是任何返回的头信息的部分。此外 html 是一个 height/width 的文本字符串可以用于普通的HTML中。 |
ANY_TAG | 任何包含有标记的信息,例如 IFD0,EXIF,... |
IFD0 | 所有 IFD0 的标记数据。在标准的图像文件中这包含了图像大小及其它。 |
THUMBNAIL | 如果有第二个 IFD,文件应该包含有缩略图。所有有关嵌入缩略图的标记信息都存储在本区。 |
COMMENT | JPEG 图像的注释头信息。 |
EXIF | EXIF 区段是 IFDO 的子区,包含有图像的更多详细信息。大多数内容都是数码相机相关的。 |
指定了是否每个区段都成为一个数组。$sectionsCOMPUTED,THUMBNAIL和COMMENT区段总是成为数组,因为它们里面包含的名字和其它区段冲突。
$thumbnail当设定为TRUE
时,读取缩略图本身。否则只读取标记数据。
返回值
返回一个关联数组,键名是头信息名,值为与其相应的值。如果没有可供返回的数据,exif_read_data()将返回FALSE
。
更新日志
版本 | 说明 |
---|---|
4.3.0 | 可以读取所有嵌入的IFD数据,包括数组(也返回数组)。此外嵌入的缩略图的大小包括在 THUMBNAIL 子数组中并且exif_read_data()可以将缩略图按照TIFF格式返回。最后,不再有返回值最大长度的限制了(直到达到内存限定)。 |
4.3.0 | 如果 PHP 有mbstring支持,则用户注释可以自动改变编码。此外,如果用户注释使用 Unicode 或 JIS 编码,将会根据 EXIF 在php.ini中的设置被自动改变。 |
4.3.0 | 如果图像包含任何 IFD0 数据,则 COMPUTED 会包含有一项 ByteOrderMotorola,对于 little-endian(intel)字节顺序,其值为 0,对于 big-endian(motorola)字节顺序,其值为 1。此外,COMPUTED 和 UserComment 在数据类型出错时也不再仅包含第一个版权条目。 |
范例
exif_read_data()例子
第一个调用失败了,因为图像没有头信息。
以上例程的输出类似于:
test1.jpg: No header data found. test2.jpg: FILE.FileName: test2.jpg FILE.FileDateTime: 1017666176 FILE.FileSize: 1240 FILE.FileType: 2 FILE.SectionsFound: ANY_TAG, IFD0, THUMBNAIL, COMMENT COMPUTED.html: width="1" height="1" COMPUTED.Height: 1 COMPUTED.Width: 1 COMPUTED.IsColor: 1 COMPUTED.ByteOrderMotorola: 1 COMPUTED.UserComment: Exif test image. COMPUTED.UserCommentEncoding: ASCII COMPUTED.Copyright: Photo (c) M.Boerger, Edited by M.Boerger. COMPUTED.Copyright.Photographer: Photo (c) M.Boerger COMPUTED.Copyright.Editor: Edited by M.Boerger. IFD0.Copyright: Photo (c) M.Boerger IFD0.UserComment: ASCII THUMBNAIL.JPEGInterchangeFormat: 134 THUMBNAIL.JPEGInterchangeFormatLength: 523 COMMENT.0: Comment #1. COMMENT.1: Comment #2. COMMENT.2: Comment #3end THUMBNAIL.JPEGInterchangeFormat: 134 THUMBNAIL.Thumbnail.Height: 1 THUMBNAIL.Thumbnail.Height: 1
参见
exif_thumbnail()
取得嵌入在 TIFF 或 JPEG 图像中的缩略图getimagesize()
取得图像大小
When the new update came out from Apple for iOS6 it provided the ability for iPad, iPod, and iPhones to be able to upload files from the device through Safari. Obviously this will open up an array of implementations where at one point it was just not possible. The issue comes when a photo is uploaded it will be dependent on the location of the "button" when the photo was taken. Imagine if you will that you have your iPhone turned with the button at the top and you take a photo. The photo when uploaded to your server might be "upside down". The following code will ensure that all uploaded photos will be oriented correctly upon upload: What you do with the image resource from there is entirely up to you. I hope that this helps you identify and orient any image that's uploaded from an iPad, iPhone, or iPod. Orientation for the photo is the key to knowing how to rotate it correctly.
I wanted some quick and easy functions for computing the shutter speed and f-stop. I couldn't find any anywhere, so I made some. It took some research :
Please note that when resizing images with GD and most image processing scripts or applications you will loose the EXIF information. What I did as a workaround is book this information into MySQL before I re-size images.
鹏仔微信 15129739599 鹏仔QQ344225443 鹏仔前端 pjxi.com 共享博客 sharedbk.com
图片声明:本站部分配图来自网络。本站只作为美观性配图使用,无任何非法侵犯第三方意图,一切解释权归图片著作权方,本站不承担任何责任。如有恶意碰瓷者,必当奉陪到底严惩不贷!