Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 jcanvas,我需要按宽度和高度调整文本大小。实际上,该库提供了一个按 X 和 Y 缩放的选项,但我需要对宽度和高度属性做同样的事情。
可能吗?
在 jCanvas 中调整文本大小的唯一方法是使用scaleX、scaleY或scale属性。和属性(用于文本绘图)是只读的,因此您不能自己更改它们width。height
scaleX
scaleY
scale
width
height
$("canvas").drawText({ fillStyle: "#000", x: 100, y: 100, fontFamily: "sans-serif", fontSize: 36, text: "This text is squished", scaleX: 0.5 });