是否可以将 VML /canvas/SVG 中的文本转换为形状?
我需要使用 vml/canvas/svg 以 3D 形式显示文本,并对文本的形状进行一些转换,如 Photoshop 中 Ctrl+T 的效果,甚至将一行文本与曲线对齐。例如,将普通文本转换为旋转的梯形/四边形形状。
那么,有没有办法先将文本转换为形状呢?
唯一接近的是 firefox 中的 getImageData() ,虽然不太理想,但还可以。还有更好的方法吗?
使用特定于浏览器的 hack 或 voodoo 是可以的,但请不要使用 Flash :)
I need to display a text in 3D using vml/canvas/svg and do some transformation to the shape of the text like the effect of Ctrl+T in photoshop, even align a line of text to a curve. For example, transform a normal text to a rotated, trapezoid/quadrilateral shape.
So, is there a way to convert text to shape first?
The only thing close is getImageData()
in firefox which is not ideal but OK. Any better methods?
Using browser-specific hacks or voodoo is OK, but no Flash please :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 SVG 中的倾斜变换来执行简单的等距投影。 HTML5 画布也是如此。如果您想要其他类型的透视投影,也有一些方法可以做到这一点,例如与剪切相结合的多重变换,或与 SVG 过滤器相结合(请参阅 Hans Schmucker 此处)。
You can use the skew transforms in SVG to do simple isometric projections. Same goes for HTML5 canvas. If you want other types of perspective projections there are ways to do that too, e.g multiple transforms combined with clipping, or with a SVG filter (see some examples by Hans Schmucker here).
经过许多 stackoverflow 帖子后,我认为最好的解决方案是使用 inkscape。
所以Javascript或HTML5或canvas或SVG无法做到这一点。
After many stackoverflow posts, I think the best solution is to use inkscape.
So Javascript or HTML5 or canvas or SVG can not do this.