我需要创建以下图像的红色、绿色和紫色(如果可能的话,黄色)版本:
原始图片在这里:https://github.com/jsx97/test/blob/main/folder.png
为此,我使用
magick input.png -colorspace gray -fill red -tint 100 output-red.png
magick input.png -colorspace gray -fill green -tint 100 output-green.png
etc.
不知道为什么,红色文件夹太亮了。例如,在这里你可以看到一个阴影:
但是在红色图像上你不会看到它:
如何创建颜色更平衡的红色、绿色等版本?也许我们需要先转换为 Lab 或 LCH?