0.2.0 • Published 2 years ago

html-to-picture v0.2.0

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

Html to Picture

把一个html变成图片

Issues

使用的时候遇到任何问题或有好的建议,请点击进入issue,欢迎参与维护!

How to use?

首先你需要通过命令行安装,就像这样:

npm install --save html-to-picture

安装好了以后,引入:

import HtmlToPicture from 'html-to-picture';

当然,你也可以使用CDN方式引入:

<script src="https://unpkg.com/html-to-picture"></script>

接着,创建对象:

let htmlToPicture = HtmlToPicture(config={
    // 暂无可配置项
});

然后,使用:

// 第一个参数可以是html字符串或dom结点
// 如果是dom结点,width和height可以不传递
htmlToPicture(template|el,width,height).then(base64=>{

});

下面是一个简单例子,你可以点击此处进行查看!

开源协议

MIT

Copyright (c) 2022 hai2007 走一步,再走一步。