clipPhoto.js 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212
  1. // pages/clip/clip.js
  2. const HOST = require('../../utils/const.js').apiUrl;
  3. import httpRequestApi from '../../utils/APIRequest';
  4. Page({
  5. /**
  6. * 页面的初始数据
  7. */
  8. data: {
  9. imageUrl: '',
  10. cropperW: '',
  11. cropperH: '',
  12. img_ratio: '',
  13. IMG_W: '',
  14. IMG_H: '',
  15. clipImage: '',
  16. left: '',
  17. top: '',
  18. screenW: '',
  19. screenH: ''
  20. },
  21. //拖拽事件
  22. move: function ({ detail }) {
  23. this.setData({
  24. left: detail.x * 2,
  25. top: detail.y * 2
  26. })
  27. },
  28. //生成图片
  29. getImageInfo: function () {
  30. wx.showLoading({
  31. title: '图片生成中...',
  32. })
  33. const img_ratio = this.data.img_ratio;
  34. const canvasW = (this.data.screenW / this.data.cropperW) * this.data.IMG_W
  35. const canvasH = (this.data.screenH / this.data.cropperH) * this.data.IMG_H
  36. const canvasL = 0;
  37. const canvasT = (this.data.top / this.data.cropperH) * this.data.IMG_H
  38. // 将图片写入画布
  39. const ctx = wx.createCanvasContext('myCanvas');
  40. //绘制图像到画布
  41. ctx.beginPath(); //开始绘制
  42. //判断是竖着显示还是横着显示
  43. if(this.data.img_ratio >= 1) {
  44. //保存图片分别是图片地址,canvas绘制距离左边距离,距离上边距离,截取原图片宽度,原图片高度,图片在canvas上的左位置,上位置,生成图片的宽,生成图片的高;
  45. ctx.drawImage(this.data.imageUrl, canvasL, canvasT, canvasW, canvasH, 0, 0, this.data.screenW / 2, this.data.screenH / 2);
  46. } else {
  47. //如果图片比较窄两边留白,留白距离
  48. const liubaiLeft = (this.data.screenW / 2 - this.data.cropperW / 2) /2;
  49. //保存图片分别是图片地址,canvas绘制距离左边距离,距离上边距离,截取原图片宽度,原图片高度,图片在canvas上的左位置,上位置,生成图片的宽,生成图片的高;
  50. ctx.drawImage(this.data.imageUrl, canvasL, canvasT, canvasW, canvasH, liubaiLeft, 0, this.data.cropperW, this.data.screenH * img_ratio);
  51. }
  52. ctx.draw(true, () => {
  53. // 获取画布要裁剪的位置和宽度
  54. wx.canvasToTempFilePath({
  55. x: 0,
  56. y: 0,
  57. width: this.data.screenW / 2,
  58. height: this.data.screenH / 2,
  59. destWidth: this.data.screenW / 2,
  60. destHeight: this.data.screenH / 2,
  61. quality: 0.5,
  62. canvasId: 'myCanvas',
  63. success: (res) => {
  64. wx.hideLoading()
  65. console.log(res);
  66. this.setData({
  67. clipImage: res.tempFilePath
  68. })
  69. //上传文件
  70. wx.uploadFile({
  71. url: HOST + 'wx/file/upload',
  72. filePath: res.tempFilePath,
  73. name: 'uploadfile_ant',
  74. header: {
  75. "Content-Type": "multipart/form-data"
  76. },
  77. success: (res) => {
  78. const data = JSON.parse(res.data);
  79. if(data.success) {
  80. //上传文件成功后放到相册里
  81. httpRequestApi.addPhotoList({
  82. path: data.data
  83. }).success((res) => {
  84. wx.navigateTo({
  85. url: '/pages/album/album'
  86. })
  87. }).fail(() => {
  88. wx.showModal({
  89. title: '错误提示',
  90. content: '图片上传到相册失败'
  91. })
  92. });
  93. }
  94. },
  95. fail: function (res) {
  96. wx.hideToast();
  97. wx.showModal({
  98. title: '错误提示',
  99. content: '上传图片失败'
  100. })
  101. }
  102. });
  103. //成功获得地址的地方
  104. // wx.previewImage({
  105. // current: '', // 当前显示图片的http链接
  106. // urls: [res.tempFilePath] // 需要预览的图片http链接列表
  107. // })
  108. }
  109. })
  110. })
  111. },
  112. /**
  113. * 生命周期函数--监听页面加载
  114. */
  115. onLoad: function (options) {
  116. console.log(options.imageUrl);
  117. //获取初始屏幕宽度
  118. const screenW = wx.getSystemInfoSync().windowWidth * 2;
  119. //h获取剪裁框的高度,按照16:9来计算高度
  120. const screenH = screenW / 16 * 9;
  121. console.log('剪裁框宽高',screenW,screenH);
  122. this.setData({
  123. screenW,
  124. screenH
  125. })
  126. const imageUrl = options.imageUrl;
  127. this.setData({
  128. imageUrl
  129. })
  130. wx.getImageInfo({
  131. src: imageUrl,
  132. success: (res) => {
  133. console.log(res);
  134. //图片实际款高
  135. const width = res.width;
  136. const height = res.height;
  137. //图片宽高比例
  138. const img_ratio = width / height
  139. this.setData({
  140. img_ratio,
  141. IMG_W: width,
  142. IMG_H: height,
  143. })
  144. if (img_ratio >= 1) {
  145. //宽比较大,横着显示
  146. this.setData({
  147. cropperW: 750,
  148. cropperH: 750 / img_ratio,
  149. })
  150. } else {
  151. //竖着显示
  152. this.setData({
  153. cropperW: 750 * img_ratio,
  154. cropperH: 750
  155. })
  156. }
  157. }
  158. })
  159. },
  160. /**
  161. * 生命周期函数--监听页面初次渲染完成
  162. */
  163. onReady: function () {
  164. },
  165. /**
  166. * 生命周期函数--监听页面显示
  167. */
  168. onShow: function () {
  169. },
  170. /**
  171. * 生命周期函数--监听页面隐藏
  172. */
  173. onHide: function () {
  174. },
  175. /**
  176. * 生命周期函数--监听页面卸载
  177. */
  178. onUnload: function () {
  179. },
  180. /**
  181. * 页面相关事件处理函数--监听用户下拉动作
  182. */
  183. onPullDownRefresh: function () {
  184. },
  185. /**
  186. * 页面上拉触底事件的处理函数
  187. */
  188. onReachBottom: function () {
  189. },
  190. /**
  191. * 用户点击右上角分享
  192. */
  193. onShareAppMessage: function () {
  194. }
  195. })