处理图像的现成解决方案
我正在寻找一个类或函数,以在将图像保存到服务器上之前对上传的图像进行转换、添加边框和文本(使用 ttf 字体)。 你知道吗?
I'm searching for a class or function, to convert, add borders and text (using ttf fonts) to an uploaded image before the image is saved on the server.
Do you know something?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
检查 WideImage 和 阿西多。
Check WideImage and Asido.
ImageMagick 令人难以置信,并且有许多 PHP 库
ImageMagick is incredible and has many libraries for PHP
您可以尝试 GD 库。
您可以使用
imagecreatefromjpeg
/png
/gif
和imagejpeg
/png
/gif
函数。imagerectangle
用于添加边框(绘制图像后面的矩形)。imagettftext
用于添加文本。网上教程很多,祝你好运!
You could try the GD library.
You can convert image types using the
imagecreatefromjpeg
/png
/gif
andimagejpeg
/png
/gif
functions.imagerectangle
for adding a border (draw a rectangle behind your image).imagettftext
for adding text.Lots of tutorials online, good luck!