Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Vectors poorly displayed on Chrome for Android canvas

I've done a bit of searching around, but haven't really found anything that might help me solve this problem. I recently switched my canvas images to vectors, which has worked great on everything but Chrome for Android (tested on 30+). Specifically in this example of using EaselJS for all of my canvas stuff.

UPDATE: http://jsfiddle.net/mcfarljw/hnMLU/ Check out this fiddle on your mobile with Chrome to see the problem.

Is there anything I can do to have it smooth things out?

vectors drawn on a android chrome canvas

//check fiddle for live code
var stage = new createjs.Stage("demo");
var stroke = new createjs.Shape();
stage.addChild(stroke);
stage.update();
like image 919
Joshua Avatar asked Nov 09 '13 12:11

Joshua


1 Answers

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...

like image 102
kannix Avatar answered Nov 12 '22 22:11

kannix