一、安装 html2canvas
在项目安装库 html2canvas文章来源:https://www.toymoban.com/news/detail-795526.html
npm i html2canvas
二、生成图片
在页面局部加载 html2canvas 库,调用方法生成文章来源地址https://www.toymoban.com/news/detail-795526.html
<template>
<div class="page-box">
<div class="text-box">文本转图片</div>
</div>
</template>
<script>
import html2canvas from 'html2canvas'
export default {
data() {
return {}
},
mounted() {
this.$nextTick(async () => {
const element = document.querySelector('.text-box')
const canvas_box = await html2canvas(element) // 生成canvas
const img_url = canvas_box.toDataURL('image/png') // 转图片地址base64
const a_tag = document.createElement('a')
a_tag.href = img_url
a_tag.download = 'test.png'
a_tag.click()
})
},
methods: {}
}
</script>
<style lang="less" scoped></style>
到了这里,关于Vue生成图片并下载的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!