怎么把text文本改为python_python wand:用draw.text()改变文本样式

使用wand.drawing.Drawing,您需要构建绘图对象的“上下文”.可以通过直接在绘图对象实例上设置属性来定义字体样式,族,系列,颜色等等.

from wand.image import Image

from wand.color import Color

from wand.drawing import Drawing

from wand.display import display

with Image(width=200, height=150, background=Color('lightblue')) as canvas:

with Drawing() as context:

context.fill_color = Color('orange')

context.stroke_color = Color('brown')

context.font_style = 'italic'

context.font_size = 24

context.text(x=25,

y=75,

body="Hello World!")

context(canvas)

canvas.format = "png"

display(canvas)

但是如果你的绘图对象已经有了矢量属性呢?

这是Drawing.push()& Drawing.pop()可用于管理您的图纸堆栈.

# Default attributes for drawing circles

context.fill_color = Color('lime')

context.stroke_color = Color('green')

context.arc((75, 75), (25, 25), (0, 360))

# Grow context stack for text style attributes

context.push()

context.fill_color = Color('orange')

context.stroke_color = Color('brown')

context.font_style = 'italic'

context.font_size = 24

context.text(x=25,

y=75,

body="Hello World!")

# Return to previous style attributes

context.pop()

context.arc((175, 125), (150, 100), (0, 360))

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值