本文整理匯總了Python中pgmagick.api.Draw.font方法的典型用法代碼示例。如果您正苦於以下問題:Python Draw.font方法的具體用法?Python Draw.font怎麽用?Python Draw.font使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類pgmagick.api.Draw
的用法示例。
在下文中一共展示了Draw.font方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: DrawTestCase
# 需要導入模塊: from pgmagick.api import Draw [as 別名]
# 或者: from pgmagick.api.Draw import font [as 別名]
class DrawTestCase(unittest.TestCase):
def setUp(self):
self.im = Image((600, 400), 'red')
self.d = Draw()
def test_affine(self):
self.d.affine(10, 10, 20, 20, 40, 40)
self.im.draw(self.d.drawer)
self.im.write('t.jpg')
def test_arc(self):
self.d.arc(30, 30, 40, 40, 40, 40)
self.im.draw(self.d.drawer)
self.im.write('t.jpg')
def test_bezier(self):
points = ((30, 30), (50, 75), (200, 100))
self.d.bezier(points)
self.im.draw(self.d.drawer)
self.im.write('t.png')
def test_circle(self):
self.d.circle(40, 40, 50, 100)
self.im.draw(self.d.drawer)
self.im.write('t.png')
def test_color(self):
self.d.color(40, 40, 'point')
self.im.draw(self.d.drawer)
self.im.write('t.png')
def test_composite(self):
img1 = Image((20, 20), 'plasma:blue')
self.d.composite(10, 10, 0, 0, img1)
self.im.draw(self.d)
self.im.write('t.png')
def test_draw_for_draw_class(self):
self.d.color(40, 40, 'point')
self.d.circle(100, 100, 50, 100)
self.im.draw(self.d)
self.im.write('t.png')
def test_ellipse(self):
self.d.ellipse(150, 150, 120, 120, 0, 120)
self.im.draw(self.d)
self.im.write('t.png')
def test_fill_color(self):
self.d.fill_color('#f09060')
self.d.ellipse(150, 150, 120, 120, 0, 120)
self.im.draw(self.d)
self.im.write('t.png')
def test_fill_rule(self):
self.d.fill_rule('evenodd')
self.d.circle(150, 150, 50, 180)
self.d.fill_rule('nonzero')
self.d.circle(350, 150, 250, 180)
self.im.draw(self.d.drawer)
self.im.write('t.png')
def test_fill_opacity(self):
self.im = Image((600, 400), 'transparent')
self.d.fill_color('red')
self.d.fill_opacity(0.5)
self.d.circle(150, 150, 50, 180)
self.d.fill_color('green')
self.d.fill_opacity(0.8)
self.d.circle(160, 160, 50, 180)
self.im.draw(self.d.drawer)
self.im.write('t.png')
def test_font_style_italic(self):
self.d.font('vera.ttf', 'italic')
self.d.text(30, 30, "hello pgmagick")
self.im.draw(self.d)
self.im.write('t.png')
def test_font_style_oblique(self):
self.d.font('vera.ttf', 'oblique')
self.d.text(30, 30, "hello pgmagick")
self.im.draw(self.d)
self.im.write('t.png')
def test_font_stretch_ultracondensed(self):
self.d.font('vera.ttf', 'oblique', stretch='ultracondensed')
self.d.text(30, 30, "hello pgmagick")
self.im.draw(self.d)
self.im.write('t.png')
def test_font_stretch_extraexpanded(self):
self.d.font('vera.ttf', 'oblique', stretch='extraexpanded')
self.d.text(30, 30, "hello pgmagick")
self.im.draw(self.d)
self.im.write('t.png')
def test_font_weight100(self):
self.d.font('vera.ttf', weight=100)
#.........這裏部分代碼省略.........