📜  cairo.context 转换竖排文本 python 代码示例

📅  最后修改于: 2022-03-11 14:46:01.001000             🧑  作者: Mango

代码示例1
Cairo Tutorial: Tips and Tricks (Section #deform)

        cr.save()
        cr.scale(0.5, 1)
        cr.arc(0.5, 0.5, 0.40, 0, 2 * pi)
        cr.stroke()

        cr.translate(1, 0)
        cr.arc(0.5, 0.5, 0.40, 0, 2 * pi)
        cr.restore()
        cr.stroke()