我正在避免使用任何其他模块。
我要做的是使用pywin32 libary在Excel中设置单元格的颜色。到目前为止,我已经找到了如何让细胞变色:
print xl.ActiveSheet.Cells(row, column).interior.color
您可以通过以类似方式分配它来设置它:
xl.ActiveSheet.Cells(row, column).interior.color = 0 #black
我的问题是如何设置RGB的单元格颜色?
我需要一个名为ColorTranslator to OLE的东西,但我不知道如何访问system.drawing
,因为它似乎是.NET
的东西。 http://msdn.microsoft.com/en-us/library/system.drawing.colortranslator.toole.aspx
答案 0 :(得分:9)
interior.color需要BGR中的十六进制值。 如果要以RGB格式指定下面的代码,可以使用。
def rgb_to_hex(rgb):
'''
ws.Cells(1, i).Interior.color uses bgr in hex
'''
bgr = (rgb[2], rgb[1], rgb[0])
strValue = '%02x%02x%02x' % bgr
# print(strValue)
iValue = int(strValue, 16)
return iValue
ws.Cells(1, 1).Interior.color = rgb_to_hex((218, 36, 238))
答案 1 :(得分:7)
Excel可以使用由公式计算的整数Red +(Green * 256)+(Blue * 256 * 256)
def rgbToInt(rgb):
colorInt = rgb[0] + (rgb[1] * 256) + (rgb[2] * 256 * 256)
return colorInt
ws.Cells(row,col).Font.Color = rgbToInt((255,255,128))