我有一个存在EXIF / IPTC数据的图像有一些问题.
当我使用imageCreateFromJpeg(旋转/裁剪或等等)时,新存储的文件不会保留EXIF / IPTC数据.
当我使用imageCreateFromJpeg(旋转/裁剪或等等)时,新存储的文件不会保留EXIF / IPTC数据.
我当前的代码如下所示:
<?PHP // Before executing - EXIF/IPTC data is there (checked) $image = "/path/to/my/image.jpg"; $source = imagecreatefromjpeg($image); $rotate = imagerotate($source,90,0); imageJPEG($rotate,$image); // After executing - EXIF/IPTC data doesn't exist anymore. ?>
我做错了吗?
你没有做错什么,但GD并不处理IPTC数据的Exif,因为它超出了GD的范围.
原文链接:https://www.f2er.com/php/132463.html您将不得不使用第三方库或其他PHP扩展来从源映像读取数据,并将其重新插入到由imagejpeg创建的输出映像.
以下是一些感兴趣的图书馆:pel (php exif library),PHP.net上的一个例子,显示如何use pel做你想要的,php metadata toolkit,iptcembed() function.