PIL图像库Python

时间:2015-09-03 10:28:22

标签: python image python-imaging-library cmyk

如何在CYMK格式上设置百分比值(0%到100%)而不是默认值(0到255)?

目前全黑墨水颜色为:

Image.new("CMYK", (width, height), (0, 0, 0, 255))

我想:

Image.new("CMYK", (width, height), (0, 0, 0, 100))

1 个答案:

答案 0 :(得分:0)

我看到here对于RGB,您可以指定百分比。

  

RGB功能,以“rgb(红色,绿色,蓝色)”的颜色给出   值是0到255范围内的整数。或者,颜色   值可以三个百分比(0%到100%)给出。例如,   “rgb(255,0,0)”和“rgb(100%,0%,0%)”均指定纯红色。

你能为CMYK尝试这个吗?