gpt4 book ai didi

html - 如何在 HTML5 中为 canvas 标签倾斜由 fillText() 生成的文本?

转载 作者:搜寻专家 更新时间:2023-10-31 08:04:23 27 4
gpt4 key购买 nike

如何在 HTML5 中为 canvas 标签倾斜由 fillText() 生成的文本?

会不会像MozTransform、webkitTransform、oTransform、transform等一样做?

最佳答案

使用这样的语句

context.setTransform (1, -0.2, 0, 1, 0, 0);

参见 spec for canvas transformations .

所以你会在哪里使用像这样的 CSS 行

-moz-transform:  matrix(a, c, b, d, tx, ty)

你可以使用Javascript

context.setTransform (a, c, b, d, tx, ty);

绘制文本的一个例子是

context.font = '20px arial,sans-serif' ;
context.fillStyle = 'black' ;
context.setTransform (1, -0.2, 0, 1, 0, 0);
context.fillText ('your text', 10, 10) ;
context.setTransform (1, 0, 0, 1, 0, 0);

请注意最后的 setTransform,它将转换设置回标识。

关于html - 如何在 HTML5 中为 canvas 标签倾斜由 fillText() 生成的文本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2749474/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com