我需要设置canvas白色背景和黑色字体颜色
设置背景透明怎么实现?
var ctx=c.getContext("2d");ctx.fillStyle="#FFFFFF";
ctx.fillRect(0,0,c.width,c.height);
ctx.fillStyle="#000000";
ctx.fillText("Hello World!",10,50);