在imagemagick中将图像设置为圆形边框

发布于 2024-12-12 07:41:49 字数 101 浏览 0 评论 0原文

我有一组具有特定宽度和高度的图像。现在我想要所有带有圆形边框的图像。那么有人可以告诉我如何批量渲染imagemagick中所有图像的圆形边框吗,我正在使用php。任何帮助或建议将非常感激。

I have a group of image with a specifc width and height.Now I want all the images with a round border. So can someone tell me how to make batch render round border of all the images in imagemagick, I am using php. Any help or suggestions will be highly appreciable.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

清旖 2024-12-19 07:41:49

您只需创建一个 foreach 来覆盖需要使用以下行进行转换的所有文件:

$imageWidth = 800;
$imageHeight = 600;
$borderSize = 20;
foreach($files as $file)
{
  exec('convert -size '.$imageWidth.'x'.$imageHeight.' xc:none -draw "roundRectangle 0,0 '.$imageWidth.','.$imageHeight.' '.$borderSize.','.$borderSize.'" -fill white '.$file.' -compose SrcIn -composite +compress out-'.file);
}

也许您需要逐个文件检查图像大小。

You just have to create a foreach that covers all files that need to be converted using a line like:

$imageWidth = 800;
$imageHeight = 600;
$borderSize = 20;
foreach($files as $file)
{
  exec('convert -size '.$imageWidth.'x'.$imageHeight.' xc:none -draw "roundRectangle 0,0 '.$imageWidth.','.$imageHeight.' '.$borderSize.','.$borderSize.'" -fill white '.$file.' -compose SrcIn -composite +compress out-'.file);
}

Probably you'll want to check the image size file by file.

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