本文介绍了如何使用 xlwt 设置文本颜色的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我找不到有关如何设置文本颜色的文档.以下将如何在 xlwt 中完成?
I haven't been able to find documentation on how to set the color of text. How would the following be done in xlwt?
style = xlwt.XFStyle()
# bold
font = xlwt.Font()
font.bold = True
style.font = font
# background color
pattern = xlwt.Pattern()
pattern.pattern = xlwt.Pattern.SOLID_PATTERN
pattern.pattern_fore_colour = xlwt.Style.colour_map['pale_blue']
style.pattern = pattern
# color of text
???
我尝试过的另一种方法是:
Another way I have tried, where I've been able to set the font color but not the background color is:
style = xlwt.easyxf('font: bold 1, color red;')
推荐答案
这是有效的:
style = xlwt.easyxf('pattern: pattern solid, fore_colour light_blue;'
'font: colour white, bold True;')
这篇关于如何使用 xlwt 设置文本颜色的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!