GD 和 GD2 图像有什么区别?
阅读 imagegd2() 和 imagegd(),我注意到函数的描述分别为:
- Output GD2 image to browser or file
- Output GD image to浏览器或文件
什么是 GD2 和 GD 图像?这些图像类型之间有什么区别?
Reading the documentation for imagegd2(), and imagegd(), I noticed the functions are described, respectively as:
- Output GD2 image to browser or file
- Output GD image to browser or file
What are a GD2, and a GD image? What are the difference between those image types?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
gd 是一个旧的 c 库,gd2 是更新的库。 php 使用 gd2.
gd is an old c library, gd2 is the updated one. php uses gd2.
GD 的某些版本仅生成 PNG,但最新版本可以生成 GIF 和 PNG。很快,下一个 PHP 版本将不再支持 GD 1 。
Some version of GD generates only PNG, but recent version can ganerate GIF and PNG. Soon GD 1 will be no longer supported in next version of PHP.