6

我已经做了一些搜索,但还没有真正找到任何可以帮助我解决这个问题的东西。我最近将我的画布图像切换为矢量,这在除 Chrome for Android(在 30+ 上测试)之外的所有内容都非常有用。特别是在这个使用 EaselJS 处理我所有画布内容的示例中。

更新: http: //jsfiddle.net/mcfarljw/hnMLU/在您的手机上使用 Chrome 查看这个小提琴以查看问题。

我能做些什么来让它顺利进行吗?

在 android chrome 画布上绘制的矢量

//check fiddle for live code
var stage = new createjs.Stage("demo");
var stroke = new createjs.Shape();
stage.addChild(stroke);
stage.update();
4

1 回答 1

3

I'm pretty sure its discussed over here:

https://code.google.com/p/chromium/issues/detail?id=285066

They've disabled anti aliasing in Chrome Android but decided a few hours ago to revert the change. So all you can do is wait for the Fix...

于 2013-11-13T12:52:33.340 回答