dom-to-image but generates high-resolution images. Latest version: 0.0.3, last published: a year ago. Start using dom-to-images in your project by running `npm i dom-to-images`. There are no other projects in the npm registry using dom-to-images.
NPM npm install dom-to-image-more Then load /* in ES 6 */importdomtoimagefrom'dom-to-image-more';/* in ES 5 */vardomtoimage=require('dom-to-image-more'); Usage All the top level functions accept DOM node and rendering options, and return promises, which are fulfilled with correspo...
npm i dom-to-image 引入 importdomtoimagefrom'dom-to-image' 用法 domtoimage.toPng 将节点转化为png格式的图片 varnode=document.getElementById('my-node');domtoimage.toPng(node).then(function(dataUrl){varimg=newImage();img.src=dataUrl;document.body.appendChild(img);}).catch(function(error)...
npm install dom-to-image import domtoimagefrom'dom-to-image'; 方法和属性: domtoimage.toPng(...); 将节点转化为png格式的图片 domtoimage.toJpeg(...); 将节点转化为jpg格式的图片 domtoimage.toSvg(...); 将节点转化为svg格式的图片,生成的图片的格式都是base64格式 domtoimage.toBlob(...);...
yarnadddom-to-image 或 npm install dom-to-image--save yarnaddfile-saver 或 npm install file-saver--save importReactfrom'react';importdomtoimagefrom'dom-to-image';import{saveAs}from'file-saver';import'./index.css'// 过滤掉所有元素functionfilter(node){return(node.tagName!=='i');}constD...
import domToImage from 'dom-to-image'; export default { mounted() { domToImage.toPng(document.getElementById('element')).then(function(dataUrl) { var img = new Image(); img.src = dataUrl; document.body.appendChild(img); }).catch(function(error) { console.error('oops, something went...
npm install dom-to-image Then load /* in ES 6 */importdomtoimagefrom'dom-to-image';/* in ES 5 */vardomtoimage=require('dom-to-image'); Bower bower install dom-to-image Include eithersrc/dom-to-image.jsordist/dom-to-image.min.jsin your page and it will make thedomtoimagevaria...
15`npm install dom-to-image` 16 17Then load 18 19```javascript 20/* in ES 6 */ 21import domtoimage from 'dom-to-image'; 22/* in ES 5 */ 23var domtoimage = require('dom-to-image'); 24``` 25 26### Bower 27 28`bower install dom-to-image` ...
npm install dom-to-image Then load /* in ES 6 */importdomtoimagefrom'dom-to-image';/* in ES 5 */vardomtoimage=require('dom-to-image'); Bower bower install dom-to-image Include eithersrc/dom-to-image.jsordist/dom-to-image.min.jsin your page and it will make thedomtoimagevaria...
tsayenAdd support for cacheBust and imagePlaceho...fae625b8年前 335 次提交 提交 .github improve template 8年前 bower_components #65 unignore bower components 8年前 dist prepare version 2.6 8年前 node_modules #65 unignore npm modules ...