答案 0 :(得分:0)
好的,我想我现在明白你的问题了。
您想要将文本绘制为曲线路径......
好消息/坏消息:
Canvas 不能直接执行此操作。
但是可以使用Html SVG来执行此操作。
您可以使用像Inkscape这样的免费程序来设计您的徽标。
然后将其保存为SVG格式(myLogo.svg)。
然后你可以将它加载到画布中:
var canvas=document.getElementById("canvas");
var ctx=canvas.getContext("2d");
var img=new Image();
img.onload=function(){
ctx.drawImage(img,0,0);
}
img.src="http://mySite.com/myLogo.svg";
以下是您可以根据需要创建的SVG的快速演示。
这是一个小提琴:http://jsfiddle.net/m1erickson/v4EX3/
<!doctype html>
<html>
<head>
<style>
body{ background-color: ivory; }
div{float:left;}
</style>
</head>
<body>
<div>
<svg viewBox = "0 0 200 120">
<defs>
<path id = "curvedPath" d = "M 10,90 Q 100,15 200,70 Q 340,140 400,30"/>
</defs>
<g fill = "white">
<use x = "0" y = "0" xlink:href = "#curvedPath" stroke = "black" stroke-width="40" fill = "none"/>
<text font-size = "20">
<textPath xlink:href = "#curvedPath">
Use SVG to put your text on a curved path like this!
</textPath>
</text>
</g>
</svg>
</div>
</body>
</html>