当前位置: 首页>>代码示例>>Python>>正文


Python Canvas.out方法代码示例

本文整理汇总了Python中canvas.Canvas.out方法的典型用法代码示例。如果您正苦于以下问题:Python Canvas.out方法的具体用法?Python Canvas.out怎么用?Python Canvas.out使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在canvas.Canvas的用法示例。


在下文中一共展示了Canvas.out方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: TestSequenceFunctions

# 需要导入模块: from canvas import Canvas [as 别名]
# 或者: from canvas.Canvas import out [as 别名]
class TestSequenceFunctions(unittest.TestCase):
  def setUp(self):
    self.canvas = Canvas()
    self.canvas.code = ""
    self.string_rgb = "FFBBAA"
    self.rgb = [251,186,10]

  def test_out(self):
    text = 'ctx = canvas.getContext("2d");'
    self.canvas.out(text)
    self.assertTrue(self.canvas.code, text)

  def test_rgb(self):
    r,g,b = self.canvas.rgb(self.string_rgb)
    self.assertTrue(r,self.rgb[0])
    self.assertTrue(g,self.rgb[1])
    self.assertTrue(b,self.rgb[2])

  def test_style_for_stroke_width(self):
    dictionary = {"stroke-width":"3"}
    self.canvas.set_style(dictionary)
    self.assertTrue(self.canvas.code,"ctx.lineWidth = 3;")

  def test_style_for_stroke_linecap(self):
    dictionary = {"stroke-linecap":3}
    self.canvas.set_style(dictionary)
    self.assertTrue(self.canvas.code,"ctx.lineCap = 3;")

  def test_style_for_stroke_linejoin(self):
    dictionary = {"stroke-linejoin":3}
    self.canvas.set_style(dictionary)
    self.assertTrue(self.canvas.code,"ctx.lineJoin = 3;")

  def test_style_for_stroke_miterlimit(self):
    dictionary = {"stroke-miterlimit":3}
    self.canvas.set_style(dictionary)
    self.assertTrue(self.canvas.code,"ctx.miterLimit = 3;")

  def test_style_for_opacity(self):
    dictionary = {"opacity":0.5}
    self.canvas.set_style(dictionary)
    self.assertTrue(self.canvas.code,"ctx.globalAlpha = 3;")

  def test_style_for_stroke(self):
    r,g,b = self.rgb
    dictionary = {"stroke":self.string_rgb}
    self.canvas.set_style(dictionary)
    self.assertTrue(self.canvas.code,"ctx.strokeStyle = 'rgb(%d, %d, %d)';" % (r,g,b))

  def test_style_for_stroke_with_opacity(self):
    r,g,b = self.rgb
    dictionary = {"stroke":self.string_rgb, "fill-opacity": 0}
    self.canvas.set_style(dictionary)
    self.assertTrue(self.canvas.code,"ctx.strokeStyle = 'rgba(%d, %d, %d, %d)';" % (r,g,b,0))
开发者ID:dakerfp,项目名称:Ink2canvas,代码行数:56,代码来源:canvas_test.py


注:本文中的canvas.Canvas.out方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。