uni-app将canvas及二维码渲染成图片并保存

<template>
    <view class="content margin">
        <image :src="shareImage" class="share-image" mode="aspectFit"></image>
        <canvasdrawer :painting="painting" class="canvasdrawer" @getImage="eventGetImage" />
        <text>选择海报背景图片 最好为高600 宽375</text>
        <button @click="fnChooseImg()">选择图片</button>
        <view class="padding" style="background: #FFFFFF;box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.08);border-radius: 5upx;margin-top:15upx;">
            <text>使用,分割,每行最好不要超过12个字符。</text>
            <itemList title="文案输入" :showBottomBorder="true" type="input" placeholder="请输入文案内容" @inputEvent="inputEventText"
             :subTitle="text"></itemList>
        </view>
        <button @click="eventDraw">绘制</button>
        <button @click="eventSave">保存到本地</button>
        <view class="img" style="visibility:hidden;">
            <tki-qrcode ref="qrcode" :cid="cid" :val="val" :size="size" :unit="unit" :onval="onval" :loadMake="loadMake"
             :usingComponents="usingComponents" @result="qrR" />
        </view>
    </view>
</template>

<script>
    const util = require('../../utils/util.js')
    import tkiQrcode from '@/components/tki-qrcode/tki-qrcode.vue'
    import canvasdrawer from '@/components/uniapp-canvas-drawer/uniapp-canvas-drawer.vue'
    import itemList from '../../components/item-list/item-list.vue';
    import {
        formatTimeBase
    } from '@/common/public.js'
    export default {
        components: {
            canvasdrawer,
            tkiQrcode,
            itemList
        },
        data() {
            return {
                list: {}, //获取的图片列表
                listLength: 0,
                defaltIndex: 0,
                show: false,
                painting: {},
                shareImage: '',
                couponList: [{
                    code: "18681616181",
                }],
                img: "", // 生成的图片base64或图片临时地址
                cid: 'myqrcode', // canvasId,页面存在多个二维码组件时需设置不同的ID
                val: 'https://rc.y018.cn/Teacher/Index/job_list', // 要生成的内容
                size: 200, // 生成的二维码大小
                unit: 'upx', // 大小单位尺寸 (upx or px)
                onval: true, // 监听val值变化自动重新生成二维码
                loadMake: true, // 组件初始化完成后自动生成二维码,val需要有值
                usingComponents: true, // 是否使用了自定义组件模式(主要是为了修复非自定义组件模式时 v-if 无法生成二维码的问题)
                showLoading: false, // 是否显示loading
                loadingText: '二维码生成中', // loading文字
                date: "",
                //使用自定义数据的参数
                lsLocalImg: false,
                localImgUrl: "",
                localStr: [],
                localText: ""
            }
        },
        onLoad() {
            //获取招聘老师个人信息并且填充到二维码内容中
            const userInfo = uni.getStorageSync("userInfo");
            this.val = `https://rc.y018.cn/Teacher/Index/job_list?username=${userInfo.username}`
            //获取当日日期
            this.date = formatTimeBase(Date.parse(new Date()), "Y年M月D日");
            //获取轮播的图片信息
            this.fnGetCarouselList();
        },
        watch: {
            //侦听img是否被赋值,赋值后才能调用绘制海报的函数
            img: function(val) {
                this.img = val;
                //绘制海报
                setTimeout(() => {
                    this.eventDraw(this.lsLocalImg);
                }, 500);
            }
        },
        methods: {
            //选择海报背景图片 最好为高600 宽375
            fnChooseImg() {
                uni.chooseImage({
                    count: 1,
                    sizeType: ['original', 'compressed'], //可以指定是原图还是压缩图,默认二者都有
                    sourceType: ['album'], //从相册选择
                    success: ret => {
                        this.localImgUrl = ret.tempFilePaths[0];
                        this.lsLocalImg = true;
                        //绘制海报
                        setTimeout(() => {
                            this.eventDraw(this.lsLocalImg);
                        }, 500);
                    }
                });
            },
            //获取轮播的图片信息
            fnGetCarouselList() {
                this.$ajax({
                    url: this.$api.rectuitrectuitCarouselList,
                    data: {
                        class: "qrcode"
                    },
                }).then(ret => {
                    this.list = ret.data.rows;
                    this.listLength = this.list.length;
                    this.localStr = this.list[0].name.split(",");
                    console.log(JSON.stringify(this.localStr));
                })
            },
            //获取二维码临时地址
            qrR(res) {
                this.img = res;
            },
            //绘制海报
            eventDraw() {
                uni.showLoading({
                    title: '绘制分享图片中',
                    mask: true
                })
                uni.downloadFile({
                    url: this.list[this.defaltIndex].img,
                    success: ret => {
                        if (ret.statusCode === 200) {
                            let tempFilePath = ret.tempFilePath;
                            //若lsLocalImg==true,则使用本地图片
                            if (this.localImgUrl != "") {
                                tempFilePath = this.localImgUrl;
                            }
                            if (this.localText != "") {
                                this.localStr = this.localText.split(",");
                            }
                            this.painting = {
                                width: 375,
                                height: 600,
                                clear: true,
                                views: [
                                    //背景图片
                                    {
                                        type: 'image',
                                        url: tempFilePath,
                                        top: 0,
                                        left: 0,
                                        width: 375,
                                        height: 600
                                    },
                                    //时间
                                    {
                                        type: 'text',
                                        content: this.date,
                                        color: 'white',
                                        fontSize: 20,
                                        top: 50,
                                        left: 20,
                                        bolder: false
                                    },
                                    //DITU
                                    {
                                        type: 'text',
                                        content: "DITU",
                                        color: 'white',
                                        fontSize: 18,
                                        top: 52,
                                        left: 240,
                                        bolder: true
                                    },
                                    //ZHIPIN
                                    {
                                        type: 'text',
                                        content: "ZHIPIN",
                                        color: 'white',
                                        fontSize: 15,
                                        top: 54,
                                        left: 290,
                                        bolder: false
                                    },
                                    //描述1
                                    {
                                        type: 'text',
                                        content: this.localStr[0],
                                        textAlign: 'left',
                                        color: 'white',
                                        fontSize: 24,
                                        top: 150,
                                        left: 20,
                                        width: 125,
                                        bolder: false,
                                        breakWord: true,
                                        MaxLineNumber: 2,
                                    },
                                    //描述2
                                    {
                                        type: 'text',
                                        content: this.localStr[1],
                                        textAlign: 'left',
                                        color: 'white',
                                        fontSize: 24,
                                        top: 190,
                                        left: 20,
                                        width: 125,
                                        bolder: false,
                                        breakWord: true,
                                        MaxLineNumber: 2,
                                    },
                                    //描述3
                                    {
                                        type: 'text',
                                        content: this.localStr[2],
                                        textAlign: 'left',
                                        color: 'white',
                                        fontSize: 24,
                                        top: 230,
                                        left: 20,
                                        width: 125,
                                        bolder: false,
                                        breakWord: true,
                                        MaxLineNumber: 2,
                                    },
                                    //描述4
                                    {
                                        type: 'text',
                                        content: this.localStr[3],
                                        textAlign: 'left',
                                        color: 'white',
                                        fontSize: 24,
                                        top: 270,
                                        left: 20,
                                        width: 125,
                                        bolder: false,
                                        breakWord: true,
                                        MaxLineNumber: 2,
                                    },
                                    //横线
                                    {
                                        type: 'rect',
                                        background: "#ffffff",
                                        top: 100,
                                        left: 20,
                                        width: 30,
                                        height: 3
                                    }, //矩形
                                    {
                                        type: 'rect',
                                        background: "#ffffff",
                                        top: 425,
                                        left: 25,
                                        width: 325,
                                        height: 150
                                    },
                                    {
                                        type: 'text',
                                        content: uni.getStorageSync("userInfo").name,
                                        fontSize: 22,
                                        top: 450,
                                        left: 40,
                                        bolder: true
                                    },
                                    {
                                        type: 'text',
                                        content: "地图直聘・招聘经理",
                                        fontSize: 16,
                                        top: 475,
                                        left: 40,
                                        bolder: false
                                    },
                                    {
                                        type: 'rect',
                                        background: "black",
                                        top: 534,
                                        left: 40,
                                        width: 168,
                                        height: 25
                                    },
                                    {
                                        type: 'rect',
                                        background: "#ffffff",
                                        top: 535,
                                        left: 41,
                                        width: 166,
                                        height: 23
                                    },
                                    {
                                        type: 'text',
                                        content: "长按识别二维码,查看职位列表",
                                        fontSize: 12,
                                        top: 540,
                                        left: 45,
                                    },
                                    //二维码
                                    {
                                        type: 'image',
                                        url: this.img,
                                        top: 440,
                                        left: 220,
                                        width: 120,
                                        height: 120
                                    },
                                ]
                            }
                        }
                    }
                });


            },
            eventSave() {
                uni.saveImageToPhotosAlbum({
                    filePath: this.shareImage,
                    success(res) {
                        uni.showToast({
                            title: '保存图片成功',
                            icon: 'success',
                            duration: 2000
                        })
                    }
                })
            },
            eventGetImage(event) {
                uni.hideLoading()
                const tempFilePath = event.tempFilePath;
                const errMsg = event.errMsg;
                if (errMsg === 'canvasdrawer:ok') {
                    this.shareImage = tempFilePath
                    this.painting = {}
                }
            },
            inputEventText(ret) {
                this.localText = ret;
            },
        }
    }
</script>

<style lang="scss">
    .share-image {
        width: 600upx;
        height: 888upx;
        margin: 0 75upx;
        border: 1px solid black;
    }

    button {
        margin-top: 20upx;
    }
</style>

import tkiQrcode from '@/components/tki-qrcode/tki-qrcode.vue'
import canvasdrawer from '@/components/uniapp-canvas-drawer/uniapp-canvas-drawer.vue'

这两个插件后面完善的时候放上来。

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,937评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,503评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,712评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,668评论 1 276
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,677评论 5 366
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,601评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,975评论 3 396
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,637评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,881评论 1 298
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,621评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,710评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,387评论 4 319
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,971评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,947评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,189评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 44,805评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,449评论 2 342

推荐阅读更多精彩内容

  • ——愿岁月无可回首,且有深情共白头。 名士辈出的魏晋一直是今天人们追念的时代,中国人后世引以为范的道德品质...
    卡夫卡的眼睛阅读 491评论 0 2
  • 他闭上眼睛的时候 有彩虹,有巧遇,有一千万种美好 。 他睁开眼睛的时候 有灰暗,有冰冷,有一堵白惨惨的墙。
    过客一只阅读 175评论 0 2
  • 不说咯得太快了
    sunforna阅读 190评论 1 0
  • 怎样才能让我不想您 十五年的别离 为什么思念愈加揉荡心胸 真的还想坐在您腿上撒撒娇 真的还想在您宽阔的背上抓抓痒 ...
    SUN驿站阅读 287评论 3 6
  • 七绝.营居 结庐总盼傍飞泉,雅俊峰藏一小园。 得尝此愿期来日,山山水水尽仙源。 营居(散文) 在一个阳光普照后的傍...
    知一书斋阅读 419评论 2 10