Vectors do not render well on Chrome for Android.

I did a little work, but actually did not find anything that could help me solve this problem. I recently switched images from canvas to vectors, which worked great for everyone except Chrome for Android (tested at 30+). In particular, in this example of using EaselJS for all my canvas materials.

UPDATE: http://jsfiddle.net/mcfarljw/hnMLU/ Check this script on your Chrome mobile phone to see the problem.

Is there anything I can do to smooth it 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(); 
+6
source share
1 answer

I am sure it was discussed here:

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

They turned off anti-aliasing in Chrome Android, but decided to revert this change a few hours ago. So all you can do is wait for Fix ...

+3
source

Source: https://habr.com/ru/post/957738/


All Articles