我对如何将base64上载到文件夹路径感到困惑。这是我的代码:
var img = document.createElement('img') || document.querySelector('img');
var context;
var width = video.offsetWidth
, height = video.offsetHeight;
canvas = canvas || document.createElement('canvas');
canvas.width = width;
canvas.height = height;
context = canvas.getContext('2d');
context.drawImage(video, 0, 0, width, height);
img.src = canvas.toDataURL('image/png');
document.body.appendChild(img);
蝴蝶刀刀