1) How to force Wordpress to keep EXIF data?
使用imagick代替GD。如果您的服务器中安装了imagick,wordpress将使用它而不是GD。问题是,许多服务器和共享主机没有imagick,用户必须安装它,这可能会很麻烦。许多共享主机甚至不允许安装其他php扩展。一些人质默认提供imagick。在尝试构建需要此类元数据的网站之前,最好先检查主机是否有该元数据(如果没有,如果可以安装)。
上次我做一个需要EXIF的项目时,我的客户机有一个服务器不允许安装imagick。我们迁移了服务器,安装了imagick并解决了这个问题。
There is an important note concerning regenerate thumbnails plugins: 即使服务器中安装了imagick,其中一些插件也会在重新生成图像时删除元数据。仔细阅读每个插件的描述,确保它们在使用之前不会删除元数据。
<小时>
2) Is there a way to insert the EXIF data in resized images once they have been resized?
此元数据存储在db表中,但如果可以使用imagick保存元数据,为什么要尝试这样做?
<小时>3) Is there a way to force wordpress to use another Image Processing System that is not stripping metadata from images?
是的,imagick。