更改使用python的颜色的色调(Changing color's tone using p

2019-09-18 04:55发布

我正在寻找一种方法来改变颜色的色调,知道它的RGB组成,然后用获得的RGB取代旧的RGB的所有实例。 例如,我想红变紫,淡红色,浅紫色等..它可以在Photoshop中通过改变颜色的色调来完成。

什么到目前为止,我认为是这样的:RGB转换到HLS,然后改变色相。

这里是到目前为止的代码(多种颜色发生变化,不只是一个,在“清单”列表中定义):

(正如你可能会注意到,我只是一个初学者和代码本身是非常脏,清洁部分可能是从其他这样用户拍摄)非常感谢!

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设置它们。

Answer 1:

您的颜色序列使用整数,但colorsys使用0.0和1.0之间的浮点值。 除以所有号码255.把他们送进之前,然后乘以255,让他们回来后截断。



文章来源: Changing color's tone using python