在 GD 中加载图像

发布于 2024-08-04 19:36:37 字数 151 浏览 4 评论 0原文

我必须使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

兔姬 2024-08-11 19:36:37

如果我理解正确的话,您希望能够打开 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文