Chrome 的 Canvas 实现中存在一个已知错误,其中对 lineTo 的连续调用有时会在角落放置像素:http: //jsfiddle.net/rPJBr/2/
var cx = document.getElementById('c').getContext('2d');
cx.beginPath();
cx.moveTo(200.5, 200.5);
cx.lineTo(200.5, 100.5);
cx.lineTo(100.5, 100.5);
cx.stroke();
这是win7上chrome 24上行为的图像和放大图
该错误已记录在这里:http ://code.google.com/p/chromium/issues/detail?id=137465
此错误是否有已知的解决方法?