如何使用命令行工具向图像添加透明的 OS X 样式边框?

发布于 2024-12-08 14:16:03 字数 549 浏览 0 评论 0原文

我有图像并想为其添加透明渐变背景,类似于 OS X 处理窗口阴影的方式。

有没有办法使用 mogrifysips 之类的东西来添加此边框?我想要处理的图像不是屏幕截图,但让我显示两个屏幕截图,以便我尝试的效果很清楚:

平面图像:

Picture.png

使用透明渐变:

<一href="https://i.sstatic.net/fdLIH.png" rel="nofollow noreferrer">Picture 1.png

这不必完全相同,只是类似,而不是实心方形边框。

I have images and want to add a transparent gradient background to them, similar to the way OS X does with window shadows.

Is there a way I can use something like mogrify or sips to add this border? The images I want to process are not screenshots, but let me show two screenshots so the effect I'm attempting is clear:

Flat image:

Picture.png

With transparent gradient:

Picture 1.png

This doesn't have to be exactly the same, just something similar and not a solid square border.

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

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

发布评论

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

评论(1

云之铃。 2024-12-15 14:16:03

如果你说“类似的东西”也被接受。尝试以下命令:

kent$  convert yourPNG.png \( +clone -background black -shadow 50x15+9+15 \) +swap -background none -mosaic +repage new.png

您需要安装 Imagemagic

结果如下所示:

在此处输入图像描述

已更新

希望这次它满足您需要的

kent$  convert yourPng.png \( +clone -background black -shadow 55x15+0+5 \) +swap -background none -layers merge  +repage new.png

结果:

在此处输入图像描述

if you say "something similar" is also accepted. try the command below:

kent$  convert yourPNG.png \( +clone -background black -shadow 50x15+9+15 \) +swap -background none -mosaic +repage new.png

you need have Imagemagic installed.

the result looks like this:

enter image description here

updated

hope this time it meets your need

kent$  convert yourPng.png \( +clone -background black -shadow 55x15+0+5 \) +swap -background none -layers merge  +repage new.png

result:

enter image description here

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