本文整理汇总了Python中cairocffi.FONT_SLANT_ITALIC属性的典型用法代码示例。如果您正苦于以下问题:Python cairocffi.FONT_SLANT_ITALIC属性的具体用法?Python cairocffi.FONT_SLANT_ITALIC怎么用?Python cairocffi.FONT_SLANT_ITALIC使用的例子?那么恭喜您, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在类cairocffi
的用法示例。
在下文中一共展示了cairocffi.FONT_SLANT_ITALIC属性的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: set_font_style
# 需要导入模块: import cairocffi [as 别名]
# 或者: from cairocffi import FONT_SLANT_ITALIC [as 别名]
def set_font_style(self, italic=None, bold=None):
"""
Sets the font style (i.e. bold or italic) used.
:param italic:
Boolean flag, indicating whether text should be italic. None indicates we preserve the existing setting.
:param bold:
Boolean flag, indicating whether text should be bold. None indicates we preserve the existing setting.
:return:
None
"""
if italic is not None:
self.font_italic = italic
if bold is not None:
self.font_bold = bold
self.context.select_font_face(family="FreeSerif",
slant=cairo.FONT_SLANT_ITALIC if self.font_italic else cairo.FONT_SLANT_NORMAL,
weight=cairo.FONT_WEIGHT_BOLD if self.font_bold else cairo.FONT_SLANT_NORMAL
)