系统相关
首页 > 系统相关> > linux – 如何使用命令行工具为图像添加透明的OS X样式边框?

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

作者:互联网

我有图像,并希望为它们添加透明渐变背景,类似于OS X对窗口阴影的处理方式.

有没有办法可以使用像mogrify或sips这样的东西来添加这个边框?我想要处理的图片不是截图,但让我展示两个截图,所以我尝试的效果很明显:

平面图片:

Picture.png http://img32.imageshack.us/img32/5010/picturexqx.png

透明渐变:

Picture 1.png http://img684.imageshack.us/img684/6550/picture1ku.png

这不必完全相同,只是类似的东西而不是实心的方形边框.

解决方法:

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

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

结果:

标签:unix,linux,image,image-processing,sips
来源: https://codeday.me/bug/20190630/1336950.html