gd 的 php 包装类
谁能推荐一个 gd 库的包装类?
我找到了少数,但它们只有基本的图像处理功能,比如翻转、反转等。
我这里真的是画图,所以我想要所有的线、点、几何图形、颜色功能。还有一个基本调色板,因此我不必一直经历定义基本颜色的麻烦:Þ
编辑: 我的网络主机没有可用的 5.3。肯定有一个类不依赖5.3特性吧?
Can anyone recommend a wrapper class for the gd library?
I've found a few, but they just have basic image manipulation functions, such as flipping, reversing, etc.
I am really drawing here, so I want all the line, point, geometric figure, and color functions. And a basic palette, so I don't have to go through the hassle of defining basic colors all the time :Þ
Edit: My webhost doesn't have 5.3 available. Surely there must be a class that doesn't rely on 5.3 features?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Imagine 是 GD 和 Imagick 的 OO 包装器。它抽象出了许多基本(和一些高级)功能对 GD 或 Imagick 特定图像处理代码的需求。
Imagine is an OO wrapper for GD and Imagick. It abstracts out the need for GD or Imagick specific image manipulation code for alot of the basic (and some advanced) functions.
ImageArtist 是一个纯 GD 包装器,它使图像操作变得非常简单,由 Treinetic (pvt) ltd 创作。
一些托管提供商没有安装 ImageMagic,但大多数都安装了 GD 扩展,因此您可以期望您编写的代码可以在本地和远程服务器上运行。
ImageArtist is a pure GD wrapper which makes image manipulation insanely easy, authored by Treinetic (pvt) ltd.
some hosting providers does not have ImageMagic installed but most of them has GD extension installed so you can expect the code you write will work across local and remote servers.