当使用HTML5 .toDataURL()
元素的<canvas>
方法时,元素的background-color
属性不适用于图片。
这是否正在发生,因为background-color
实际上不是canvas
的一部分,而是DOM造型?如果是这样,或者其他什么,可以解决这个问题的方法是什么?
摆弄here。 base64字符串将记录到控制台。
画布是使用svg
从https://code.google.com/p/canvg/创建的
你是正确的,它实际上不是图像数据的一部分,只是造型的一部分。最简单的方法是在绘制SVG之前绘制一个矩形:
var canvas = document.getElementById('test');
var ctx = canvas.getContext('2d');
ctx.fillStyle = 'green';
ctx.fillRect(0, 0, canvas.width, canvas.height);
其他方法可能是创建一个虚拟CANVAS并将原始CANVAS内容复制到其上。
//create a dummy CANVAS
destinationCanvas = document.createElement("canvas");
destinationCanvas.width = srcCanvas.width;
destinationCanvas.height = srcCanvas.height;
destCtx = destinationCanvas.getContext('2d');
//create a rectangle with the desired color
destCtx.fillStyle = "#FFFFFF";
destCtx.fillRect(0,0,srcCanvas.width,srcCanvas.height);
//draw the original canvas onto the destination canvas
destCtx.drawImage(srcCanvas, 0, 0);
//finally use the destinationCanvas.toDataURL() method to get the desired output;
destinationCanvas.toDataURL();
希望这会有所帮助,
var canvas = document.getElementById('test');
var context = canvas.getContext('2d');
//cache height and width
var w = canvas.width;
var h = canvas.height;
var data = context.getImageData(0, 0, w, h);
var compositeOperation = context.globalCompositeOperation;
context.globalCompositeOperation = "destination-over";
context.fillStyle = "#fff";
context.fillRect(0,0,w,h);
var imageData = canvas.toDataURL("image/png");
context.clearRect (0,0,w,h);
context.putImageData(data, 0,0);
context.globalCompositeOperation = compositeOperation;
var a = document.createElement('a');
a.href = imageData;
a.download = 'template.png';
a.click();