Skip to content

JS 将 Canvas 转换为 Blob 或 Image

Published: at 04:22 PMSuggest Changes

用 js 将 canvas 转换为 blob 或者 image

Image

MDN - toDataURL

canvas.toBlob(function (blob) {
  link.href = URL.createObjectURL(blob);
  console.log(blob);
  console.log(link.href); // this line should be here
}, 'image/png');
var image = canvas
  .toDataURL('image/png')
  .replace('image/png', 'image/octet-stream'); // here is the most important part because if you dont replace you will get a DOM 18 exception.
window.location.href = image; // it will save locally
var canvas = document.getElementById('alpha');
var dataURL = canvas.toDataURL('image/png');
var newTab = window.open('about:blank', 'image from canvas');
newTab.document.write("<img src='" + dataURL + "' alt='from canvas'/>");
var canvas = document.getElementById('my-canvas');
// draw to canvas...
canvas.toBlob(function (blob) {
  saveAs(blob, 'pretty image.png');
});

downloadjs

import download from 'downloadjs';
download(data, strFileName, strMimeType);

Previous Post
在 React/NextJs 中使用 PDF.js 预览和转换 PDF 文件为图片
Next Post
JavaScript 保存文件的几种方法