作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有以下图片:
我想要的是只保留红色并去饱和每隔一种颜色变成灰度。结果是:
如何使用 Imagemagick 命令行执行此操作?
我试过了但是失败了:
convert original.png \( -clone 0 -transparent red -alpha extract -transparent black \) redonly.png
最佳答案
这是使用 ImageMagick 的一种方法,尽管并不完美。我为红色指定 hue=0 deg,在 0 到 360 范围内指定 tolerance=25 deg。
输入:
hue=0
tolerance=25
toler=`convert xc: -format "%[fx:(100*$tolerance/360)]" info:`
hueval=`convert xc: -format "%[fx:50-$hue]" info:`
thresh=`convert xc: -format "%[fx:100-$tolerance]" info:`
convert tomato.jpg \
\( -clone 0 -colorspace gray -colorspace sRGB \) \
\( -clone 0 -colorspace HSL -channel 0 -separate +channel \
-evaluate AddModulus ${hueval}% \
-solarize 50% -level 0x50% \
-threshold $thresh% \) \
-swap 0,1 -alpha off -compose over -composite \
result.jpg
关于imagemagick - 如何仅使用 ImageMagick 命令行保留红色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63735345/
我是一名优秀的程序员,十分优秀!