1.1.4 • Published 4 years ago

html2-image-stream v1.1.4

Weekly downloads
1
License
ISC
Repository
github
Last release
4 years ago

html2-image-stream html转为图片数据流(data:image/png;base64,${data})

安装使用

npm

npm install html2-image-stream  --save

import {html2ImageStream} from 'html2-image-stream'
html2ImageStream()

script

<script src="index.js"></script>

const {html2ImageStream} = window.html2ImageStream
html2ImageStream()

params

  • selector: 'string', // 类选择器,指定下载dom
  • handleBack: function // 回调

return

  • res: {

    type: 'string', // 'success'成功,'error'错误
    
    data: [{ // type==='success'时返回图片流信息,type==='error'返回错误信息
        image: 'data:image/png;base64,${data}',
        width: '',
        height: ''
    }, ...]

    }

html2ImageStream('.selector', function(res){
    // 
})
1.1.4

4 years ago

1.1.3

5 years ago

1.1.2

5 years ago

1.1.1

5 years ago

1.1.0

5 years ago

1.0.4

5 years ago

1.0.3

5 years ago

1.0.2

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago