本文整理匯總了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
)