Codeigniter 剥离图像 EXIF 数据
我正在使用 gd2 图像库进行图像上传和调整大小。
图像 EXIF 数据在调整大小时旋转我的垂直图片。有没有办法阻止图像旋转?或者在php中删除exif数据?
I am doing image upload and resizing using the gd2 image library.
The image EXIF data is rotating my vertical pictures on resize. Is there a way to stop the image from rotating? or strip the exif data in php?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
除非学习 JPEG 格式并弄清楚如何一点一点地删除 EXIF...
您可以使用 GD 库。
http://www.php.net/manual/en/function.imagecreatefromjpeg.php 和 http://www.php.net/manual/en/function.imagejpeg.php 应该可以。
Barring learning the JPEG format and figuring out how to remove EXIF bit by bit...
You can use the GD library.
http://www.php.net/manual/en/function.imagecreatefromjpeg.php and http://www.php.net/manual/en/function.imagejpeg.php should do it.