是否有可能在Windows 8背景图片上暗淡?

时间:2015-02-02 15:53:55

标签: windows image

我一直在寻找一段时间来看看是否可以在Windows背景图片上放置一个暗淡的东西?
我看到人们建议使用Windows Style构建器,但这需要付出代价。 然而,我正在考虑使用Photoshop将暗淡的效果直接放在图片上 有什么建议吗?

我在这里提出这个问题是因为我不知道该把它放在哪里。 提前谢谢!

1 个答案:

答案 0 :(得分:1)

您可以使用ImageMagick的modulate命令来降低图像的亮度和/或饱和度,如下所示:

convert input.jpg -modulate 40 output.jpg

更改此内容:

enter image description here

到此:

enter image description here

或者你可以像这样变暗和去饱和:

convert input.jpg -modulate 50,30 output.jpg

enter image description here

变成:

enter image description here