在 GD 中加载图像
我必须使用 PHP&&GD 处理不同类型的图像。
这些图像具有 png、jpg 等扩展名。我如何将它们上传到资源中。 例如,有函数CreateImageFromJPEG
,但我无法加载其他类型的图像。如何为我需要的所有类型编写模板?
I have to work with different kinds of images with PHP&&GD.
The images have extensions like png, jpg and other. How can i upload them into resources.
For example, there is function CreateImageFromJPEG
, but I'll not be able to load other types of images. How can I write template for all types I need?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果我理解正确的话,您希望能够打开 JPEG 以外的其他类型的文件?使用标准方法(例如使用 fread)读取文件内容,然后使用 imagecreatefromstring() 自动检测文件类型。
如果您必须支持 GD 不支持的一些更奇特的文件类型,您应该查看 ImageMagick 。
If I understand correctly, you want to be able to open files of other types then JPEG? Read in the contents of the file using standard methods (e.g. using fread) and then use imagecreatefromstring() which autodetects the file type.
If you have to support some more exotic file types not supported by GD, you should look into ImageMagick.