更新记录
1.0.0(2024-02-01) 下载此版本
首次提交
平台兼容性
Vue2 | Vue3 |
---|---|
√ | × |
App | 快应用 | 微信小程序 | 支付宝小程序 | 百度小程序 | 字节小程序 | QQ小程序 |
---|---|---|---|---|---|---|
× | × | × | × | × | × | × |
钉钉小程序 | 快手小程序 | 飞书小程序 | 京东小程序 |
---|---|---|---|
× | × | × | × |
H5-Safari | Android Browser | 微信浏览器(Android) | QQ浏览器(Android) | Chrome | IE | Edge | Firefox | PC-Safari |
---|---|---|---|---|---|---|---|---|
√ | √ | √ | √ | √ | √ | √ | √ | √ |
view转图片,仅支持H5
-
组件属性说明
序号 属性名称 属性说明 1 isBase64 该属性决定返回的是文件地址还是base64 -
组件函数说明
序号 函数名称 函数说明 1 createImage(ref) 调用该函数,传入需要生成图片的view的ref值 -
createImage(ref)函数参数说明
this.$refs.viewToImage.createImage(this.$refs.test)
-
组件事件说明
序号 事件名称 事件说明 1 image(path) 生成图片后通过监听组件的该函数获取图片内容 -
使用示例
<template>
<view class="uni-column">
<jushi-view-to-image ref="viewToImage" isBase64 @image="image">
<view class="uni-column test" ref="test">
<text>测试文字</text>
<image src="@/static/shuijiao.jpg" style="width: 300rpx;height: 260rpx;" mode=""></image>
</view>
</jushi-view-to-image>
<button @click="clickSave()">保存</button>
<view class="uni-column" style="margin-top: 40rpx;">
<text>生成的图片</text>
<image :src="src" mode="" @click="preview()"></image>
</view>
</view>
</template>
<script>
export default {
data() {
return {
src:''
}
},
methods: {
image(path){
console.log(path)
this.src = path
},
clickSave(){
this.$refs.viewToImage.createImage(this.$refs.test)
},
preview(){
uni.previewImage({
urls:[this.src],
current:0
})
}
}
}
</script>
<style>
.test{
background-color: antiquewhite;
margin: 30rpx 100rpx;
padding: 20rpx;
font-size: 30rpx;
}
</style>