在图像上添加边框而不修改原始图像(GD php)
我想在每个图像的底部添加 10px 高度的底部边框,而不调整原始图像的大小。
示例:我有一张 300X200 像素的 jpg,我在底部添加了 10 像素高度的黑色边框,我的图像现在是 300X210 带黑色边框。
感谢您的帮助
I would like to add bottom border of 10px height on bottom of every image WITHOUT resizing the original image.
Exemple: i have one jpg 300X200 px, i add black border of 10 px height on the bottom, my image is now 300X210 with black border.
Thanks for your help
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
函数drawBorder代码看起来错误。应如下所示:
Function drawBorder code looks wrong. Should be as follows:
这是绘制边框的代码示例。我使用
GET
变量来调用图像。例如,如果您将此代码放入图像文件夹中,则可以调用
example.org/images/resize.php?path=image.jpg
,而无需修改原始图像。您甚至可以使用 mod_rewrite (假设您使用的是 apache)来应用此过滤器。但是,这可能会影响性能(即时执行),因此我建议至少在服务器上缓存图像,或者只是将它们保存到磁盘。
Here is a code sample that will draw a border. I have used the
GET
variable to call the image.If you for example put this code in your images folder, you can call
example.org/images/resize.php?path=image.jpg
, without modifying the original image. You can even use mod_rewrite (assuming you are using apache) to apply this filter.However, this may affect the performance (doing it on the fly), so I recommend at least caching the images on the server, or just saving them to disk.