本文整理匯總了Python中pgmagick.api.Draw.scaling方法的典型用法代碼示例。如果您正苦於以下問題:Python Draw.scaling方法的具體用法?Python Draw.scaling怎麽用?Python Draw.scaling使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類pgmagick.api.Draw
的用法示例。
在下文中一共展示了Draw.scaling方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: DrawTestCase
# 需要導入模塊: from pgmagick.api import Draw [as 別名]
# 或者: from pgmagick.api.Draw import scaling [as 別名]
#.........這裏部分代碼省略.........
def test_polyline(self):
coordinate = ((10, 10), (20, 30), (40, 50))
self.d.polyline(coordinate)
coordinate = [(100, 100), (150, 100), [150, 150], (100, 150)]
self.d.polyline(coordinate)
self.im.draw(self.d)
self.im.write('t.png')
def test_rectangle(self):
self.d.rectangle(50, 50, 100, 100)
self.im.draw(self.d)
self.im.write('t.png')
def test_rotation(self):
self.d.rectangle(150, 150, 200, 200)
self.d.rotation(40)
self.im.draw(self.d)
self.d = Draw()
self.d.fill_opacity(0.8)
self.d.rectangle(150, 150, 200, 200)
self.d.rotation(20)
self.im.draw(self.d)
self.d = Draw()
self.d.fill_opacity(0.6)
self.d.rectangle(150, 150, 200, 200)
self.im.draw(self.d)
self.im.write('t.png')
def test_round_rectangle(self):
self.d.round_rectangle(200, 200, 30, 30, 15, 15)
self.im.draw(self.d)
self.im.write('t.png')
def test_scaling(self):
self.d.scaling(0.4, 0.4)
self.d.circle(150, 150, 150, 200)
self.im.draw(self.d)
self.d = Draw()
self.d.fill_opacity(0.6)
self.d.circle(150, 150, 150, 200)
self.im.draw(self.d)
self.im.write('t.png')
def test_skew(self):
self.d = Draw()
self.d.fill_opacity(0.6)
self.d.circle(50, 50, 50, 100)
self.im.draw(self.d)
self.d = Draw()
self.d.fill_opacity(0.6)
self.d.circle(50, 50, 50, 100)
self.d.skewx(40)
self.im.draw(self.d)
self.d = Draw()
self.d.fill_opacity(0.6)
self.d.circle(50, 50, 50, 100)
self.d.skewy(40)
self.im.draw(self.d)
self.im.write('t.png')
def test_stroke_antialias(self):
self.d.stroke_color('black')
self.d.stroke_width(20)
self.d.stroke_antialias(True)
self.d.line(10, 10, 40, 200)
self.d.stroke_antialias(False)