最佳答案
请看下面的例子:
var canvas = document.getElementById("canvas");
var ctx = canvas.getContext("2d");
img = new Image();
img.onload = function(){
canvas.width = 400;
canvas.height = 150;
ctx.drawImage(img, 0, 0, img.width, img.height, 0, 0, 400, 150);
}
img.src = "http://openwalls.com/image/1734/colored_lines_on_blue_background_1920x1200.jpg";
正如您所看到的,图像并不是抗锯齿的,尽管据说 DrawImage 会自动应用抗锯齿。我尝试了很多不同的方法,但似乎没有用。你能告诉我怎样才能得到抗锯齿的图像吗? 谢谢。