答案 0 :(得分:0)
将复杂的表格文本呈现为无法访问的画布图像是一个严重的可用性错误。但是,如果必须,您可以将表格用作图像。您可以获取图像的with和height并设置画布的大小。最后,您将图像绘制在画布上。
var img = new Image();
img.src = whatever;
img.onload = function() {
//get the with and height of the image
var w = img.width;
var h = img.height;
// set the canvas width and height
canvas.width = w;
canvas.height= h;
// draw the image
ctx.drawImage( img, 0, 0, w, h );