HTML5画布.toDataURL()图像没有背景颜色

问题描述 投票:11回答:3

问题

当使用HTML5 .toDataURL()元素的<canvas>方法时,元素的background-color属性不适用于图片。

这是否正在发生,因为background-color实际上不是canvas的一部分,而是DOM造型?如果是这样,或者其他什么,可以解决这个问题的方法是什么?

小提琴

摆弄here。 base64字符串将记录到控制台。

附加信息

画布是使用svghttps://code.google.com/p/canvg/创建的

javascript html5 canvas
3个回答
10
投票

你是正确的,它实际上不是图像数据的一部分,只是造型的一部分。最简单的方法是在绘制SVG之前绘制一个矩形:

var canvas = document.getElementById('test');
var ctx = canvas.getContext('2d');
ctx.fillStyle = 'green';
ctx.fillRect(0, 0, canvas.width, canvas.height);

27
投票

其他方法可能是创建一个虚拟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();

0
投票

希望这会有所帮助,

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();
© www.soinside.com 2019 - 2024. All rights reserved.