隐藏

微信小程序制作海报保存到相册发朋友圈

发布:2018/10/11 11:45:21作者:管理员 来源:本站 浏览次数:1413

这个功能应该分三步来做:

一、制作海报图片

二、保存图片到相册

三、手动发朋友圈再到相册中取图片

详细步骤:

一、制作海报

1.要制作能保存到相册的图片,我们需要一个canvas标签,在我们的wxml的最后加入canvas标签:


  1. <button class="shareBtns" bindtap='onSaveImg'></button>
  2. <canvas canvas-id="myCanvas" style="position:fixed;visibily:hidden;width: 646px; height: 966px;" />

因为我需要的图片大小是646*966的图片,所以大家根据自己相应的需求设置大小。

2.在wxml文件相应的js文件中:


	
  1. //先制作一个canvas标签,再保存成图片
  2. onSaveImg: function () {
  3. const ctx = wx.createCanvasContext('myCanvas'); //看回wxml里的canvas标签,这个的myCanvas要和标签里的canvas-id一致
  4. ctx.clearRect(0, 0, 644, 966);
  5. ctx.drawImage("../../img/test1.png", 0, 0, 646, 966);
  6. ctx.drawImage("../../img/test2.png", 0, -60, 646, 966);
  7. ctx.drawImage("../../img/tipsImg" + this.data.tipsImgId + ".png", 79, 291 - 60, 492, 244);
  8. ctx.drawImage("../../img/test3.jpg", 90, 780 - 60, 135, 135);
  9. ctx.setFillStyle("#02446e");
  10. ctx.setFontSize(26);
  11. ctx.fillText("亲爱的" + this.data.testName + this.data.testId, 100, 610 - 60);
  12. ctx.setTextAlign("center");
  13. ctx.fillText("你的有入扔有人不迷", 435, 790 - 60);
  14. ctx.setTextAlign("left");
  15. ctx.setFillStyle("black");
  16. ctx.setFontSize(18);
  17. ctx.fillText("我等你", 330, 825 - 60);
  18. ctx.setFontSize(22);
  19. ctx.drawImage("../../img/test4.png", 0, 936 - 60, 646, 30);
  20. var self = this;
  21. ctx.draw(true, setTimeout(function () { //为什么要延迟100毫秒?大家测试一下
  22. wx.canvasToTempFilePath({
  23. x: 0,
  24. y: 0,
  25. width: 646,
  26. height: 966,
  27. destWidth: 646,
  28. destHeight: 966,
  29. canvasId: 'myCanvas',
  30. success: function (res) {
  31. self.data.savedImgUrl = res.tempFilePath;
  32. self.saveImageToPhoto();
  33. }
  34. })
  35. }, 100))
  36. },

二、保存图片到相册

这个功能和我的上一篇文章的功能一致,以下是这个案例的代码:


  1. //保存图片到相册
  2. saveImageToPhoto: function () {
  3. if (this.data.savedImgUrl != "") {
  4. wx.saveImageToPhotosAlbum({
  5. filePath: this.data.savedImgUrl,
  6. success: function () {
  7. wx.showModal({
  8. title: '保存图片成功',
  9. content: '寻人启事已经保存到相册,您可以手动分享到朋友圈!',
  10. showCancel: false
  11. });
  12. },
  13. fail: function (res) {
  14. console.log(res);
  15. if (res.errMsg == "saveImageToPhotosAlbum:fail cancel") {
  16. wx.showModal({
  17. title: '保存图片失败',
  18. content: '您已取消保存图片到相册!',
  19. showCancel: false
  20. });
  21. } else {
  22. wx.showModal({
  23. title: '提示',
  24. content: '保存图片失败,您可以点击确定设置获取相册权限后再尝试保存!',
  25. complete: function (res) {
  26. console.log(res);
  27. if (res.confirm) {
  28. wx.openSetting({}) //打开小程序设置页面,可以设置权限
  29. } else {
  30. wx.showModal({
  31. title: '保存图片失败',
  32. content: '您已取消保存图片到相册!',
  33. showCancel: false
  34. });
  35. }
  36. }
  37. });
  38. }
  39. }
  40. })
  41. }
  42. },

三、手动发朋友圈再到相册中取图片