2

我正在寻找一种改变颜色色调的方法,知道它是 RGB 组合,然后用获得的 RGB 替换旧 RGB 的所有实例。例如,我想把红色变成紫色、浅红色、浅紫色等……这可以在 Photoshop 中通过改变颜色的色调来完成。

到目前为止我的想法如下:将 RGB 转换为 HLS,然后更改色调。

这是到目前为止的代码(在“列表”列表中定义了多种颜色,而不仅仅是一种颜色):

(您可能会注意到,我只是一个初学者,代码本身很脏;更干净的部分可能来自其他 SO 用户)非常感谢!

import colorsys

from tempfile import mkstemp
from shutil import move
from os import remove, close

def replace(file, pattern, subst):
    #Create temp file
    fh, abs_path = mkstemp()
    new_file = open(abs_path,'w')
    old_file = open(file)
    for line in old_file:
        new_file.write(line.replace(pattern, subst))
    #close temp file
    new_file.close()
    close(fh)
    old_file.close()
    #Remove original file
    remove(file)
    #Move new file
    move(abs_path, file)

def decimal(var):
    return '{:g}'.format(float(var))

list=[[60,60,60],[15,104,150],[143,185,215],[231,231,231],[27,161,253],[43,43,43],[56,56,56],[255,255,255],[45,45,45],[5,8,10],[23,124,193],[47,81,105],[125,125,125],[0,0,0],[24,24,24],[0,109,166],[0,170,255],[127,127,127]]

for i in range(0,len(list)):
    r=list[i][0]/255
    g=list[i][1]/255
    b=list[i][2]/255
    h,l,s=colorsys.rgb_to_hls(r,g,b)
    print(decimal(r*255),decimal(g*255),decimal(b*255))
    h=300/360
    str1=str(decimal(r*255)) + "," + str(decimal(g*255)) + "," + str(decimal(b*255))
    r,g,b=colorsys.hls_to_rgb(h, l, s)
    print(decimal(r*255),decimal(g*255),decimal(b*255))
    str2=str(decimal(r*255)) + "," + str(decimal(g*255)) + "," + str(decimal(b*255))
    replace("Themes.xml",str1,str2)

编辑:问题很简单:R、G、B 和 H 必须介于 0 和 1 之间,我将它们设置在 0 和 255 以及 0 和 360 之间。更新了代码。

4

1 回答 1

2

您的颜色序列使用整数,但colorsys使用介于 0.0 和 1.0 之间的浮点值。在输入之前将所有数字除以255.,然后乘以 255 并在取回它们后截断。

于 2012-06-16T14:07:50.873 回答