clip.js 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196
  1. // pages/clip/clip.js
  2. const HOST = require('../../utils/const.js').apiUrl;
  3. Page({
  4. /**
  5. * 页面的初始数据
  6. */
  7. data: {
  8. imageUrl: '',
  9. cropperW: '',
  10. cropperH: '',
  11. img_ratio: '',
  12. IMG_W: '',
  13. IMG_H: '',
  14. clipImage: '',
  15. left: '',
  16. top: '',
  17. clipW: 200
  18. },
  19. //拖拽事件
  20. move: function ({ detail }) {
  21. this.setData({
  22. left: detail.x * 2,
  23. top: detail.y * 2
  24. })
  25. },
  26. //缩放事件
  27. scale: function ({detail}) {
  28. console.log(detail.scale)
  29. this.setData({
  30. clipW: 200 * detail.scale
  31. })
  32. },
  33. //生成图片
  34. getImageInfo: function () {
  35. wx.showLoading({
  36. title: '图片生成中...',
  37. })
  38. const img_ratio = this.data.img_ratio;
  39. const canvasW = (this.data.clipW / this.data.cropperW) * this.data.IMG_W
  40. const canvasH = (this.data.clipW / this.data.cropperH) * this.data.IMG_H
  41. const canvasL = (this.data.left / this.data.cropperW) * this.data.IMG_W
  42. const canvasT = (this.data.top / this.data.cropperH) * this.data.IMG_H
  43. // 将图片写入画布
  44. const ctx = wx.createCanvasContext('myCanvas');
  45. //绘制图像到画布
  46. ctx.save(); // 先保存状态 已便于画完圆再用
  47. ctx.beginPath(); //开始绘制
  48. ctx.clearRect(0, 0, 1000, 1000)
  49. //先画个圆
  50. ctx.arc(this.data.clipW / 2, this.data.clipW / 2, this.data.clipW / 2, 0, 2 * Math.PI, false)
  51. ctx.clip();//画了圆 再剪切 原始画布中剪切任意形状和尺寸。一旦剪切了某个区域,则所有之后的绘图都会被限制在被剪切的区域内
  52. // ctx.setFillStyle('#EEEEEE')
  53. // ctx.fill()
  54. ctx.drawImage(this.data.imageUrl, canvasL, canvasT, canvasW, canvasH, 0, 0, this.data.clipW, this.data.clipW); // 推进去图片
  55. ctx.restore(); //恢复之前保存的绘图上下文 恢复之前保存的绘图上下午即状态 可以继续绘制
  56. ctx.draw(true, () => {
  57. // 获取画布要裁剪的位置和宽度
  58. wx.canvasToTempFilePath({
  59. x: 0,
  60. y: 0,
  61. width: this.data.clipW,
  62. height: this.data.clipW,
  63. destWidth: this.data.clipW,
  64. destHeight: this.data.clipW,
  65. quality: 0.5,
  66. canvasId: 'myCanvas',
  67. success: (res) => {
  68. wx.hideLoading()
  69. this.setData({
  70. clipImage: res.tempFilePath
  71. })
  72. //上传文件
  73. wx.uploadFile({
  74. url: HOST + 'wx/file/upload',
  75. filePath: res.tempFilePath,
  76. name: 'uploadfile_ant',
  77. header: {
  78. "Content-Type": "multipart/form-data"
  79. },
  80. success: (res) => {
  81. console.log(res);
  82. const data = JSON.parse(res.data);
  83. if (data.success) {
  84. wx.navigateTo({
  85. url: '/pages/setName/setName?imageUrl=' + data.data
  86. })
  87. }
  88. },
  89. fail: function (res) {
  90. wx.hideToast();
  91. wx.showModal({
  92. title: '错误提示',
  93. content: '上传图片失败'
  94. })
  95. }
  96. });
  97. //成功获得地址的地方
  98. // wx.previewImage({
  99. // current: '', // 当前显示图片的http链接
  100. // urls: [res.tempFilePath] // 需要预览的图片http链接列表
  101. // })
  102. }
  103. })
  104. })
  105. },
  106. /**
  107. * 生命周期函数--监听页面加载
  108. */
  109. onLoad: function (options) {
  110. console.log(options.imageUrl);
  111. const imageUrl = options.imageUrl;
  112. this.setData({
  113. imageUrl
  114. })
  115. wx.getImageInfo({
  116. src: imageUrl,
  117. success: (res) => {
  118. console.log(res);
  119. //图片实际款高
  120. const width = res.width;
  121. const height = res.height;
  122. //图片宽高比例
  123. const img_ratio = width / height
  124. this.setData({
  125. img_ratio,
  126. IMG_W: width,
  127. IMG_H: height,
  128. })
  129. if (img_ratio >= 1) {
  130. //宽比较大,横着显示
  131. this.setData({
  132. cropperW: 750,
  133. cropperH: 750 / img_ratio,
  134. })
  135. } else {
  136. //竖着显示
  137. this.setData({
  138. cropperW: 750 * img_ratio,
  139. cropperH: 750
  140. })
  141. }
  142. }
  143. })
  144. },
  145. /**
  146. * 生命周期函数--监听页面初次渲染完成
  147. */
  148. onReady: function () {
  149. },
  150. /**
  151. * 生命周期函数--监听页面显示
  152. */
  153. onShow: function () {
  154. },
  155. /**
  156. * 生命周期函数--监听页面隐藏
  157. */
  158. onHide: function () {
  159. },
  160. /**
  161. * 生命周期函数--监听页面卸载
  162. */
  163. onUnload: function () {
  164. },
  165. /**
  166. * 页面相关事件处理函数--监听用户下拉动作
  167. */
  168. onPullDownRefresh: function () {
  169. },
  170. /**
  171. * 页面上拉触底事件的处理函数
  172. */
  173. onReachBottom: function () {
  174. },
  175. /**
  176. * 用户点击右上角分享
  177. */
  178. onShareAppMessage: function () {
  179. }
  180. })