uni-app 实现分享生成图片

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
<template>
<view>
    <view class="personal_li"
                  @click="shareClick">
              <image src="../../static/address.png"
                     mode="widthFix"
                     class="iconImage"></image>
              <text class="font14">分享生成图片</text>
              <image src="../../static/jt.png"
                     mode="widthFix"
                     class="jtIcon"></image>
            </view>
        <view class="canvasContent" v-if="canvasShow">
            <canvas canvas-id="shareCanvas" class="canvasName"></canvas>
            <view class="canvasText">图片已保存到相册,可分享给好友</view>
            <image src="../../static/error.png" class="errorImage" @click="canvasShow = false"></image>
        </view>
</view>
</template>
 
<script>
export default {
  data() {
    return {
            canvasShow: false
    }
  },
  methods: {
        //这是一个封装好的方法 
        promisify: api => {
            return (options, ...params) => {
                return new Promise((resolve, reject) => {
                    const extras = {
                        success: resolve,
                        fail: reject
                    }
                    api({ ...options, ...extras }, ...params)
                })
            }
        },
        shareClick() {         
            const wxGetImageInfo = this.promisify(uni.getImageInfo)
            Promise.all([
                    // 图片目前只随机找了几张图片,后期可自行替换
                    wxGetImageInfo({
                            src: 'http://pics.ksudi.com/pic/2019/soms/companycard/jd2.png'   // 背景图片
                    }),
                    wxGetImageInfo({
                            src: 'http://pics.ksudi.com/pic/2019/soms/companycard/st2.png'   // 二维码图片,二维码图片如需要携带参数,可根据接口将需要扫码进入页面的路径+参数传入后端,后端可根据生产小程序二维码路径,将路径放入这里就ok了,<a href="https://www.jianshu.com/p/5f96a4f91b9c" target="_blank" rel="noopener nofollow">可参考</a>
                    })
            ]).then(res => {
                    console.log(3454)
                    const ctx = wx.createCanvasContext('shareCanvas')
                    console.log(ctx)
                    // 底图
                    ctx.drawImage(res[0].path, 0, 0, 600, 700)
                    // 作者名称
                    ctx.setTextAlign('center')    // 文字居中
                    ctx.setFillStyle('#000000'// 文字颜色:黑色
                    ctx.setFontSize(22)         // 文字字号:22px
                    ctx.fillText('作者:张杰', 300 / 2, 100)
                    // 小程序码
                    const qrImgSize = 150
                    ctx.drawImage(res[1].path, (340 - qrImgSize) / 2, 230, qrImgSize, qrImgSize)
                    ctx.stroke()
                    // 绘图生成临时图片
                    console.log('res', res)
                    ctx.draw(false,() => {
                        this.tempFileImage()
                    })
                    this.canvasShow = true
            })
        },
        tempFileImage() {
            let that = this
            uni.canvasToTempFilePath({
                    canvasId: 'shareCanvas',
                    success: (res) => {
                            uni.hideLoading()
                            that.savePic(res.tempFilePath)
                    },
                    fail:function () {
                            //TODO
                    }
            })
        },
        //保存
        savePic (filePath) {
            console.log('filePath', filePath)
            uni.showLoading({
                    title: '正在保存'
            });
            uni.saveImageToPhotosAlbum({
                    filePath: filePath,
                    success: function () {
                            uni.showToast({
                                    title: '图片保存成功~'
                            });
                    },
                    fail: function (e) {
                            //TODO
                    },
                    complete: function (){
                            uni.hideLoading()
                    }
            });
        }
  }
}
</script>
<style lang="scss" scoped>
    .canvasContent{
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        top: 0;
        background: rgba(0,0,0,0.5);
        display: flex;
        align-items: center;
        flex-direction: column;
        padding-top: 50upx;
 
        .canvasName{
            width: 80%;
            height: calc(100vh - 300upx);
        }
        .canvasText{
            margin: 30upx 0 20upx;
            color: #FFFFFF;
        }
        .errorImage{
            width: 80upx;
            height: 80upx;
        }
    }
</style>

  

posted @   小短腿奔跑吧  阅读(17074)  评论(1编辑  收藏  举报
编辑推荐:
· 开发者必知的日志记录最佳实践
· SQL Server 2025 AI相关能力初探
· Linux系列:如何用 C#调用 C方法造成内存泄露
· AI与.NET技术实操系列(二):开始使用ML.NET
· 记一次.NET内存居高不下排查解决与启示
阅读排行:
· 阿里最新开源QwQ-32B,效果媲美deepseek-r1满血版,部署成本又又又降低了!
· 开源Multi-agent AI智能体框架aevatar.ai,欢迎大家贡献代码
· Manus重磅发布:全球首款通用AI代理技术深度解析与实战指南
· 被坑几百块钱后,我竟然真的恢复了删除的微信聊天记录!
· AI技术革命,工作效率10个最佳AI工具
点击右上角即可分享
微信分享提示