123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534 |
- <template>
- <view class="box">
- <view style="padding-top: 100rpx;padding-left: 73rpx;padding-right: 75rpx;">
- <view style="border-radius: 20rpx;">
- <canvas canvas-id="mini_poster" style="width: 600rpx;" :style="{ height: canvasH + 'px' }"></canvas>
- </view>
- </view>
-
- <view style="height: 106rpx;"></view>
-
- <view class="downloadBtn" @click="toSaveImage">保存图片</view>
-
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- mpWxQr: "https://apidms.66km.com/static/third/jialian.ico",
- canvasW: 0,
- canvasH: 0,
- invest_areas: [{id: 1, name: "儿童教育"}, {id: 1, name: "大数据"}],
- nickname: "",
- avatar: "",
- company: "",
- phone: "17610998099",
- email: "redoume@163.com",
- time: "2022.01.21~2022.01.2",
- finished: false,
- sellingPoint:'',
- userInfo:'',
- ext:'',
- mpWxQr2:'',
- mpWxQr3:'',
- mpWxQr4:'',
- ptImg:'https://dmsimg.66km.com/marketing//accompany/4E6F0009-EC54-4387-8DDC-2B7389065B49.png',
- ptImg2:'',
- groupType:'',
- }
- },
- computed: {
- showInvestAreas() {
- if (this.invest_areas) {
- const names = []
- this.invest_areas.forEach(item => {
- names.push(item.name)
- })
- return names.join(" ")
- }
- return '未设置'
- }
- },
- onLoad(opt) {
-
-
- this.avatar=opt.img;
-
- console.log(this.avatar.slice(0,5))
- if(this.avatar.slice(0,5)=='https'){
-
- }else{
- this.avatar=this.avatar.replace('http','https');
- }
- this.time=opt.time
-
- console.log(this.avatar)
- this.nickname=opt.name;
-
- if(opt.sellingPoint&&opt.sellingPoint!='undefined'){
- this.sellingPoint=opt.sellingPoint;
- }
- console.log('this.sellingPoint==='+this.sellingPoint)
-
- if(this.nickname.length>16){
- this.nickname=this.nickname.substring(0,16)+'...'
- }
- if(opt.groupType!=0){
- console.log(opt.groupType)
- this.groupType=opt.groupType;
- if(this.nickname.length>12){
- this.nickname=this.nickname.substring(0,12)+'...'
- }
- }
-
- this.userInfo=this.$store.state.userInfo;
- this.ext=this.$common.getExtStoreId();
- this.canvasW =uni.upx2px(600)
- if(this.sellingPoint){
- this.canvasH = uni.upx2px(840)
- }else{
- this.canvasH = uni.upx2px(740)
- }
-
- var that=this;
- var type=opt.type
- if(type==2){
- var bizType=2;
- var path='pages/activity/jkDetail'
- }else{
- var bizType=1;
- var path='pages/shop/goodsDetail'
- }
- uni.showLoading({
- title: '加载中'
- })
- this.$request.httpBinary('openMall/shareQrCode', {
- bizType:bizType,
- path:path,
- goodsId:opt.id,
- openId:this.userInfo.openId,
- unionId:this.ext.unionId
- },'GET').then(res => {
-
- this.mpWxQr3=res;
- uni.hideLoading();
-
-
- this.toDrawCanvas()
- })
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- },
- methods: {
- toSaveImage() {
- if (!this.finished) {
- uni.showToast({
- title: '正在生成图片,稍后再试',
- icon: 'none'
- })
- return
- }
- const that = this
- uni.canvasToTempFilePath({
- canvasId: 'mini_poster',
- success: (res) => {
- uni.saveImageToPhotosAlbum({
- filePath: res.tempFilePath,
- success: () => {
- uni.showToast({
- title: '保存成功'
- })
- },
- fail() {
- uni.showToast({
- icon: 'none',
- title: '保存名片码失败'
- })
- }
- })
- },
- fail() {
- uni.showToast({
- icon: 'none',
- title: '保存名片码失败'
- })
- }
- })
- },
- async toDrawCanvas() {
- const padding = uni.upx2px(34)
- const cardHeight = uni.upx2px(420)
- const cw = this.canvasW - 2 * padding
- const r = uni.upx2px(12)
- let ctx = uni.createCanvasContext('mini_poster', this)
-
- var cx = uni.upx2px(30)
- var cy = uni.upx2px(30)
-
-
-
- ctx.setFillStyle('rgba(255, 255, 255, 0)')
-
-
- ctx.fillRect(0, 0, this.canvasW, this.canvasH)
-
- this.drawback(ctx)
- this.drawRoundRect(ctx, padding, padding, cw, cardHeight, r, 2)
-
- this.drawCard(ctx, padding, padding, cw, cardHeight)
-
- const av = uni.upx2px(540)
- const topimgh = uni.upx2px(360)
-
-
-
- const hi = await this.downloadImage(this.avatar)
- if (hi.tempFilePath) {
- const x = uni.upx2px(30)
- const y = uni.upx2px(30)
- this.drawRoundRectAvatar(ctx, x, y, av, topimgh, r, hi.tempFilePath)
-
- }
- if(this.groupType){
- var ptw=uni.upx2px(60)
- var pth=uni.upx2px(32)
- var ptIcon=await this.downloadImage(this.ptImg);
- if (ptIcon.tempFilePath) {
- const x = uni.upx2px(30)
- const y = uni.upx2px(370)
- this.drawRoundRectAvatar(ctx, x, y, ptw, pth, r, ptIcon.tempFilePath)
-
- }
- }
-
-
-
-
- if (this.mpWxQr) {
- var fsm = uni.getFileSystemManager();
-
- var times = new Date().getTime();
- var codeimg = wx.env.USER_DATA_PATH + '/' + times + '.png';
- var that=this;
- fsm.writeFile({
- filePath: codeimg,
- data: this.mpWxQr3,
- encoding:"base64",
- success(e) {
- console.log(e)
- console.log(codeimg)
- var wxsx=uni.upx2px(48)
- if(that.sellingPoint){
- var wxsy=uni.upx2px(649)
- }else{
- var wxsy=uni.upx2px(549)
- }
-
- var wxwidth=uni.upx2px(158)
- ctx.drawImage(codeimg, wxsx, wxsy, wxwidth,wxwidth)
- },
- fail(err) {
- console.log(err)
- }
- });
- const hello = await this.downloadImage(this.mpWxQr)
-
-
-
-
-
-
-
-
-
- if (hello.tempFilePath) {
-
- }
- }
- ctx.draw()
- this.finished = true
- },
- async drawCard(ctx, x, y, w, h) {
-
-
-
- let vp = uni.upx2px(440)
-
- var hp = uni.upx2px(36)
- ctx.setTextBaseline('center')
- const fz30 = uni.upx2px(32)
- ctx.fillStyle = '#212121'
- ctx.setFontSize(fz30)
- if(this.groupType){
- var namehp = uni.upx2px(100)
- ctx.fillText(this.nickname, namehp, vp)
- }else{
- ctx.fillText(this.nickname, hp, vp)
- }
-
- var timeX=hp;
- var timeY=vp+20
-
- const fz26 = uni.upx2px(26)
- ctx.setFillStyle('#3C3C3C')
- ctx.setFontSize(fz26)
- ctx.fillText(this.time, timeX, timeY)
- var sm=this.sellingPoint
- ctx.setFillStyle('#999999')
- ctx.setFontSize(fz26)
- var smy=timeY+20
- var maxwidth = uni.upx2px(550)
- if(sm.length>20){
- var sm1=sm.substring(0,20)
- ctx.fillText(sm1, timeX, smy)
- if(sm.length>40){
- var sm2=sm.substring(20,40)
- ctx.fillText(sm2, timeX, smy+20)
- var sm3=sm.substring(40,60)
- ctx.fillText(sm3, timeX, smy+40)
- }else{
- var sm2=sm.substring(20,40)
- ctx.fillText(sm2, timeX, smy+20)
- }
- }else{
- ctx.fillText(sm, timeX, smy)
- }
-
-
- var wemtis1='名额有限 先到先得'
- var wemtisx=uni.upx2px(240)
- if(this.sellingPoint){
- var wemtisy=uni.upx2px(700)
- }else{
- var wemtisy=uni.upx2px(600)
- }
-
- ctx.setFillStyle('#999999')
- const fz24 = uni.upx2px(24)
- ctx.setFontSize(fz24)
- ctx.fillText(wemtis1,wemtisx,wemtisy)
- var wemtis2='长按二维码识别参与活动'
- var wemtisy2=wemtisy+30
- ctx.fillText(wemtis2,wemtisx,wemtisy2)
-
- vp = vp + 30
-
-
- vp = vp + 42
- const iconW = uni.upx2px(30)
- const textH = hp + iconW + 6
-
- ctx.setFillStyle('#333333')
- ctx.setFontSize(fz30)
-
- vp = vp + 28
-
- ctx.setFillStyle('#333333')
- ctx.setFontSize(fz30)
-
- const oPadding = uni.upx2px(34)
- const iPadding = uni.upx2px(40)
- const textW = w - textH + oPadding - iPadding
-
- vp = vp + 28
-
- ctx.setFillStyle('#333333')
- ctx.setFontSize(fz30)
-
- },
- async drawHelloInfo(ctx, x, y, w) {
- let vp = y + 12
- const hp = x
- ctx.setTextBaseline('top')
- const fz30 = uni.upx2px(30)
- ctx.setFillStyle('#333333')
- ctx.setFontSize(fz30)
- ctx.fillText('您好,', hp, vp)
- const text = "我是来自 " + this.company + ' 的投资人' + this.nickname
- const lines = this.drawTextInLines(ctx, text, hp, vp, w, 26)
- vp += 26 * lines + 26
- ctx.fillText('这是我的名片,请惠存。', hp, vp)
- vp += 26
- ctx.fillText('谢谢', hp, vp)
- vp += 26
- vp += 40
- ctx.setFillStyle('#F37231')
- ctx.fillRect(hp, vp, 20, 3)
- vp += 7
- ctx.setFillStyle('#333333')
- const fz28 = uni.upx2px(28)
- ctx.setFontSize(fz28)
- ctx.fillText('长按识别二维码', hp, vp)
- vp += 20
- const ttt = '在大天使中查看我的更多信息'
- ctx.fillText(ttt, hp, vp)
- },
- calculateCanvasHeight() {
-
- const ctx = uni.createCanvasContext('test_poster')
- const padding = uni.upx2px(34)
- const text = "我是来自 " + this.company + ' 的投资人' + this.nickname
- const rows = this.drawTextInLines(ctx, text, padding, 0, this.canvasW - 2 * padding, 26)
- const cardH = uni.upx2px(380)
- const h = padding * 2 + cardH + padding + 12 + 26 * 3 + rows * 26
- return h + 90
- },
- _drawRoundRect(ctx, x, y, w, h, r) {
- ctx.beginPath()
-
- console.log("x="+x+'y='+y+'w='+w+'h='+h+'r='+r)
- ctx.arc(x + r, y + r, r, Math.PI, Math.PI * 1.5)
-
-
- ctx.arc(x + w - r, y + r, r, Math.PI * 1.5, Math.PI * 2)
-
-
- ctx.arc(x + w - r, y + h - r, r, 0, Math.PI * 0.5)
-
- ctx.arc(x + r, y + h - r, r, Math.PI * 0.5, Math.PI)
- ctx.closePath()
-
- ctx.fillStyle = '#FFFFFF';
-
- ctx.fill()
- },
- drawRoundRect(ctx, x, y, w, h, r, lineWidth) {
-
-
- ctx.save()
-
- ctx.clip()
-
- ctx.fillStyle = '#EEEEEE'
- if(this.sellingPoint){
- var y=uni.upx2px(619)
- }else{
- var y=uni.upx2px(519)
- }
- ctx.arc(0, 0, 15, Math.PI, Math.PI * 1.5)
- var bWidth=uni.upx2px(600)
- ctx.fillRect(0, y, bWidth, 2)
- ctx.restore()
- },
- drawback(ctx){
- ctx.save()
- var bWidth=uni.upx2px(12)
- this._drawRoundRect(ctx, 0, 0, this.canvasW, this.canvasH,bWidth )
- ctx.clip()
-
- ctx.fillStyle = '#FFFFFF'
-
-
- var bWidth=uni.upx2px(600)
- ctx.fillRect(0, 0, bWidth, this.canvasH)
- ctx.restore()
- },
- drawRoundRectAvatar(ctx, x, y, w, h, r, imgPath) {
- ctx.save()
- this._drawRoundRect(ctx, x, y, w, h, r)
- ctx.clip()
- ctx.drawImage(imgPath, x, y, w, h)
- ctx.restore()
- },
-
- drawTextInLines(ctx, t, x, y, w, lineHeight) {
- const chr = t.split("")
- let temp = ''
- let row = []
- for (let i = 0; i < chr.length; i++) {
- if (ctx.measureText(temp).width < w) {
-
- } else {
- row.push(temp)
- temp = ''
- }
- temp += chr[i]
- }
- row.push(temp)
- for (const i in row) {
-
- ctx.fillText(row[i], x, (y + (i * 1 + 1) * lineHeight))
- }
- return row.length
- },
-
- drawTextInOneLine(ctx, t, x, y, w) {
- const chr = t.split('')
- let temp = ''
- for (let i = 0; i < chr.length; i++) {
- if (ctx.measureText(temp + '...').width <= w) {
- temp += chr[i]
- } else {
- temp = temp.substring(0, temp.length - 1)
- temp += '...'
- break
- }
- }
- ctx.fillText(temp, x, y)
- },
- downloadImage(url) {
- return new Promise((resolve, reject) => {
- uni.downloadFile({
- url: url,
- success: (res) => {
- return resolve(res)
- },
- fail: (err) => {
- return reject(err)
- }
- })
- })
- }
- }
- }
- </script>
- <style scoped>
- .box{
- width: 100%;
- height: 100vh;
- background: url('http://dmsphoto.66km.com.cn/thFiles/83BDAB66-DD76-4F3A-92B3-F6AF0BA57A9E.png');
- background-size: 100% 100%;
- }
- .downloadBtn{
- width: 329rpx;
- height: 92rpx;
- background: url('http://dmsphoto.66km.com.cn/thFiles/A0CF4704-69A8-4DAC-8943-75F98D1349DD.png');
- background-size: 100% 100%;
- line-height: 92rpx;
- text-align: center;
- font-size: 28rpx;
- font-family: PingFangSC-Medium, PingFang SC;
- font-weight: 500;
- color: #DC490A;
- margin: 0 auto;
- }
- </style>
|