ImgCropper.vue 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459
  1. <template>
  2. <div class="clipper-container" ref="clipper">
  3. <div class="clipper-content">
  4. <canvas ref="canvas"></canvas>
  5. <!-- 裁剪部分 -->
  6. <div class="clipper-part">
  7. <div class="pCanvas-container">
  8. <canvas ref="pCanvas"></canvas>
  9. </div>
  10. </div>
  11. <!-- 背景遮罩 -->
  12. <div class="mask" :class="{opacity: maskShow}"></div>
  13. <!-- 手势操作层 -->
  14. <div class="gesture-mask" ref="gesture"></div>
  15. </div>
  16. <!-- 底部操作栏 -->
  17. <div class="action-bar">
  18. <button class="btn-cancel" @click="_cancel">取消</button>
  19. <button class="btn-ok" @click="_clipper">确认</button>
  20. </div>
  21. </div>
  22. </template>
  23. <style lang="scss">
  24. .clipper-container {
  25. position: fixed;
  26. top: 0;
  27. bottom: 0;
  28. left: 0;
  29. right: 0;
  30. z-index: 1003;
  31. line-height: 0;
  32. background-color: #000000;
  33. display: flex;
  34. justify-content: space-between;
  35. align-items: center;
  36. flex-direction: column;
  37. .clipper-content{
  38. height: calc(100vh - 60px);
  39. .clipper-part {
  40. z-index: 1004;
  41. position: fixed;
  42. left: 0;
  43. right: 0;
  44. top: 0;
  45. bottom: 0;
  46. margin: auto;
  47. .pCanvas-container {
  48. position: absolute;
  49. top: 50%;
  50. left: 50%;
  51. transform: translate(-50%, -50%);
  52. border: 1px solid #fff;
  53. }
  54. }
  55. .mask {
  56. position: absolute;
  57. top: 0;
  58. bottom: 0;
  59. left: 0;
  60. right: 0;
  61. z-index: 1001;
  62. transition: opacity 500ms;
  63. background-color: #000;
  64. opacity: 0;
  65. &.opacity {
  66. opacity: 0.8;
  67. }
  68. }
  69. .gesture-mask {
  70. position: fixed;
  71. top: 0;
  72. bottom: 0;
  73. left: 0;
  74. right: 0;
  75. bottom: 61px;
  76. z-index: 1005;
  77. }
  78. }
  79. .action-bar {
  80. z-index: 1005;
  81. height: 60px;
  82. width: 100%;
  83. line-height: 60px;
  84. border-top: 1px solid rgba(256, 256, 256, 0.3);
  85. background-color: #151126;
  86. button {
  87. display: block;
  88. padding: 0 15px;
  89. line-height: 60px;
  90. font-size: 16px;
  91. color: #fff;
  92. background: none;
  93. border: none;
  94. outline: 0;
  95. &.btn-cancel {
  96. float: left;
  97. }
  98. &.btn-ok {
  99. float: right;
  100. color: #6C52F4;
  101. }
  102. }
  103. }
  104. }
  105. </style>
  106. <script>
  107. export default {
  108. name: 'imageClipper',
  109. props: {
  110. img: String, //url或dataUrl
  111. clipperImgWidth: {
  112. type: Number,
  113. default: 400
  114. },
  115. clipperImgHeight: {
  116. type: Number,
  117. default: 400
  118. }
  119. },
  120. watch: {
  121. img() {
  122. this.loadImgQueue.push(this.img);
  123. this._loadImg();
  124. }
  125. },
  126. data() {
  127. return {
  128. originXDiff: 0, //裁剪canvas与原图canvas坐标原点上的差值
  129. originYDiff: 0,
  130. maskShow: true,
  131. maskShowTimer: null,
  132. ctx: null,
  133. pCtx: null,
  134. actionBarHeight: 61,
  135. loadImgQueue: [], //加载图片队列
  136. $img: null,
  137. imgLoaded: false,
  138. imgLoading: false,
  139. imgStartWidth: null,
  140. imgStartHeight: null,
  141. imgCurrentWidth: null,
  142. imgCurrentHeight: null,
  143. imgX: null, //img对于canvas的坐标
  144. imgY: null,
  145. imgScale: 1, //图片目前的缩放倍数 范围是1-5
  146. imgMinScale: 1,
  147. imgMaxScale: 5,
  148. imgScaleStep: 60, //缩放步长,每60px加减0.1
  149. //图片canvas宽高
  150. cWidth: 0,
  151. cHeight: 0
  152. }
  153. },
  154. mounted() {
  155. setTimeout(() => {
  156. this._initClipper();
  157. }, 10);
  158. },
  159. beforeDestroy() {
  160. let $gesture = this.$refs.gesture;
  161. $gesture.ontouchstart = null;
  162. $gesture.ontouchmove = null;
  163. $gesture.outouchend = null;
  164. },
  165. methods: {
  166. _initClipper() {
  167. this.loadImgQueue.push(this.img);
  168. this._initCanvas();
  169. this._loadImg();
  170. this._initEvent();
  171. },
  172. _initCanvas() {
  173. let $canvas = this.$refs.canvas,
  174. $pCanvas = this.$refs.pCanvas,
  175. clipperClientRect = this.$refs.clipper.getBoundingClientRect(),
  176. clipperWidth = parseInt(this.clipperImgWidth / window.devicePixelRatio),
  177. clipperHeight = parseInt(this.clipperImgHeight / window.devicePixelRatio);
  178. this.ctx = $canvas.getContext('2d');
  179. this.pCtx = $pCanvas.getContext('2d');
  180. //判断clipperWidth与clipperHeight有没有超过容器值
  181. if (clipperWidth < 0 || clipperWidth > clipperClientRect.width) {
  182. clipperWidth = 250
  183. }
  184. if (clipperHeight < 0 || clipperHeight > clipperClientRect.height) {
  185. clipperHeight = 100
  186. }
  187. //因为canvas在手机上会被放大,因此里面的内容会模糊,这里根据手机的devicePixelRatio来放大canvas,然后再通过设置css来收缩,因此关于canvas的所有值或坐标都要乘以devicePixelRatio
  188. $canvas.style.width = clipperClientRect.width + 'px';
  189. $canvas.style.height = clipperClientRect.height + 'px';
  190. $canvas.width = this._ratio(clipperClientRect.width);
  191. $canvas.height = this._ratio(clipperClientRect.height);
  192. $pCanvas.style.width = clipperWidth + 'px';
  193. $pCanvas.style.height = clipperHeight + 'px';
  194. $pCanvas.width = this._ratio(clipperWidth);
  195. $pCanvas.height = this._ratio(clipperHeight);
  196. //计算两个canvas原点的x y差值
  197. let cClientRect = $canvas.getBoundingClientRect(),
  198. pClientRect = $pCanvas.getBoundingClientRect();
  199. this.originXDiff = pClientRect.left - cClientRect.left;
  200. this.originYDiff = pClientRect.top - cClientRect.top;
  201. this.cWidth = cClientRect.width;
  202. this.cHeight = cClientRect.height;
  203. },
  204. _initEvent() {
  205. let $gesture = this.$refs.gesture,
  206. cClientRect = this.$refs.canvas.getBoundingClientRect(),
  207. scx = 0, //对于单手操作是移动的起点坐标,对于缩放是图片距离两手指的中点最近的图标。
  208. scy = 0,
  209. fingers = {}; //记录当前有多少只手指在触控屏幕
  210. //one finger
  211. let iX = this.imgX,
  212. iY = this.imgY;
  213. //two finger
  214. let figureDistance = 0,
  215. pinchScale = this.imgScale;
  216. $gesture.addEventListener('touchstart', e => {
  217. if (!this.imgLoaded) {
  218. return;
  219. }
  220. if (e.touches.length === 1) {
  221. let finger = e.touches[0];
  222. scx = finger.pageX;
  223. scy = finger.pageY;
  224. iX = this.imgX;
  225. iY = this.imgY;
  226. fingers[finger.identifier] = finger;
  227. } else if (e.touches.length === 2) {
  228. let finger1 = e.touches[0],
  229. finger2 = e.touches[1],
  230. f1x = finger1.pageX - cClientRect.left,
  231. f1y = finger1.pageY - cClientRect.top,
  232. f2x = finger2.pageX - cClientRect.left,
  233. f2y = finger2.pageY - cClientRect.top;
  234. scx = parseInt((f1x + f2x) / 2);
  235. scy = parseInt((f1y + f2y) / 2);
  236. figureDistance = this._pointDistance(f1x, f1y, f2x, f2y);
  237. fingers[finger1.identifier] = finger1;
  238. fingers[finger2.identifier] = finger2;
  239. //判断变换中点是否在图片中,如果不是则去离图片最近的点
  240. if (scx < this.imgX) {
  241. scx = this.imgX;
  242. }
  243. if (scx > this.imgX + this.imgCurrentWidth) {
  244. scx = this.imgX + this.imgCurrentHeight;
  245. }
  246. if (scy < this.imgY) {
  247. scy = this.imgY;
  248. }
  249. if (scy > this.imgY + this.imgCurrentHeight) {
  250. scy = this.imgY + this.imgCurrentHeight;
  251. }
  252. }
  253. }, false);
  254. $gesture.addEventListener('touchmove', e => {
  255. e.preventDefault();
  256. if (!this.imgLoaded) {
  257. return;
  258. }
  259. this.maskShowTimer && clearTimeout(this.maskShowTimer);
  260. this.maskShow = false;
  261. if (e.touches.length === 1) {
  262. let f1x = e.touches[0].pageX,
  263. f1y = e.touches[0].pageY;
  264. this._drawImage(iX + f1x - scx, iY + f1y - scy, this.imgCurrentWidth, this.imgCurrentHeight);
  265. } else if (e.touches.length === 2) {
  266. let finger1 = e.touches[0],
  267. finger2 = e.touches[1],
  268. f1x = finger1.pageX - cClientRect.left,
  269. f1y = finger1.pageY - cClientRect.top,
  270. f2x = finger2.pageX - cClientRect.left,
  271. f2y = finger2.pageY - cClientRect.top,
  272. newFigureDistance = this._pointDistance(f1x, f1y, f2x, f2y),
  273. scale = this.imgScale + parseFloat(((newFigureDistance - figureDistance) / this.imgScaleStep).toFixed(1));
  274. fingers[finger1.identifier] = finger1;
  275. fingers[finger2.identifier] = finger2;
  276. if (scale !== pinchScale) {
  277. //目前缩放的最小比例是1,最大是5
  278. if (scale < this.imgMinScale) {
  279. scale = this.imgMinScale;
  280. } else if (scale > this.imgMaxScale) {
  281. scale = this.imgMaxScale;
  282. }
  283. pinchScale = scale;
  284. this._scale(scx, scy, scale);
  285. }
  286. }
  287. }, false);
  288. $gesture.addEventListener('touchend', e => {
  289. if (!this.imgLoaded) {
  290. return;
  291. }
  292. this.imgScale = pinchScale;
  293. //从finger删除已经离开的手指
  294. let touches = Array.prototype.slice.call(e.changedTouches, 0);
  295. touches.forEach(item => {
  296. delete fingers[item.identifier];
  297. });
  298. //迭代fingers,如果存在finger则更新scx,scy,iX,iY,因为可能缩放后立即单指拖动
  299. let i,
  300. fingerArr = [];
  301. for(i in fingers) {
  302. if (fingers.hasOwnProperty(i)) {
  303. fingerArr.push(fingers[i]);
  304. }
  305. }
  306. if (fingerArr.length > 0) {
  307. scx = fingerArr[0].pageX;
  308. scy = fingerArr[0].pageY;
  309. iX = this.imgX;
  310. iY = this.imgY;
  311. } else {
  312. this.maskShowTimer = setTimeout(() => {
  313. this.maskShow = true;
  314. }, 300);
  315. }
  316. //做边界值检测
  317. let x = this.imgX,
  318. y = this.imgY,
  319. pClientRect = this.$refs.pCanvas.getBoundingClientRect();
  320. if (x > pClientRect.left + pClientRect.width) {
  321. x = pClientRect.left
  322. } else if (x + this.imgCurrentWidth < pClientRect.left) {
  323. x = pClientRect.left + pClientRect.width - this.imgCurrentWidth;
  324. }
  325. if (y > pClientRect.top + pClientRect.height) {
  326. y = pClientRect.top;
  327. } else if (y + this.imgCurrentHeight < pClientRect.top) {
  328. y = pClientRect.top + pClientRect.height - this.imgCurrentHeight;
  329. }
  330. if (this.imgX !== x || this.imgY !== y) {
  331. this._drawImage(x, y, this.imgCurrentWidth, this.imgCurrentHeight);
  332. }
  333. });
  334. },
  335. _loadImg() {
  336. if (this.imgLoading || this.loadImgQueue.length === 0) {
  337. return;
  338. }
  339. let img = this.loadImgQueue.shift();
  340. if (!img) {
  341. return;
  342. }
  343. let $img = new Image(),
  344. onLoad = e => {
  345. $img.removeEventListener('load', onLoad, false);
  346. this.$img = $img;
  347. this.imgLoaded = true;
  348. this.imgLoading = false;
  349. this._initImg($img.width, $img.height);
  350. this.$emit('loadSuccess', e);
  351. this.$emit('loadComplete', e);
  352. this._loadImg();
  353. },
  354. onError = e => {
  355. $img.removeEventListener('error', onError, false);
  356. this.$img = $img = null;
  357. this.imgLoading = false;
  358. this.$emit('loadError', e);
  359. this.$emit('loadComplete', e);
  360. this._loadImg();
  361. };
  362. this.$emit('beforeLoad');
  363. this.imgLoading = true;
  364. this.imgLoaded = false;
  365. $img.src = this.img;
  366. $img.crossOrigin = 'Anonymous'; //因为canvas toDataUrl不能操作未经允许的跨域图片,这需要服务器设置Access-Control-Allow-Origin头
  367. $img.addEventListener('load', onLoad, false);
  368. $img.addEventListener('error', onError, false);
  369. },
  370. _initImg(w, h) {
  371. let eW = null,
  372. eH = null,
  373. maxW = this.cWidth,
  374. maxH = this.cHeight - this.actionBarHeight;
  375. //如果图片的宽高都少于容器的宽高,则不做处理
  376. if (w <= maxW && h <= maxH) {
  377. eW = w;
  378. eH = h;
  379. } else if (w > maxW && h <= maxH) {
  380. eW = maxW;
  381. eH = parseInt(h / w * maxW);
  382. } else if (w <= maxW && h > maxH) {
  383. eW = parseInt(w / h * maxH);
  384. eH = maxH;
  385. } else {
  386. //判断是横图还是竖图
  387. if (h > w) {
  388. eW = parseInt(w / h * maxH);
  389. eH = maxH;
  390. } else {
  391. eW = maxW;
  392. eH = parseInt(h / w * maxW);
  393. }
  394. }
  395. if (eW <= maxW && eH <= maxH) {
  396. //记录其初始化的宽高,日后的缩放功能以此值为基础
  397. this.imgStartWidth = eW;
  398. this.imgStartHeight = eH;
  399. this._drawImage((maxW - eW) / 2, (maxH - eH) / 2, eW, eH);
  400. } else {
  401. this._initImg(eW, eH);
  402. }
  403. },
  404. _drawImage(x, y, w, h) {
  405. this._clearCanvas();
  406. this.imgX = parseInt(x);
  407. this.imgY = parseInt(y);
  408. this.imgCurrentWidth = parseInt(w);
  409. this.imgCurrentHeight = parseInt(h);
  410. //更新canvas
  411. this.ctx.drawImage(this.$img, this._ratio(x), this._ratio(y), this._ratio(w), this._ratio(h));
  412. //更新pCanvas,只需要减去两个canvas坐标原点对应的差值即可
  413. this.pCtx.drawImage(this.$img, this._ratio(x - this.originXDiff), this._ratio(y - this.originYDiff), this._ratio(w), this._ratio(h));
  414. },
  415. _clearCanvas() {
  416. let $canvas = this.$refs.canvas,
  417. $pCanvas = this.$refs.pCanvas;
  418. $canvas.width = $canvas.width;
  419. $canvas.height = $canvas.height;
  420. $pCanvas.width = $pCanvas.width;
  421. $pCanvas.height = $pCanvas.height;
  422. },
  423. _ratio(size) {
  424. return parseInt(window.devicePixelRatio * size);
  425. },
  426. _pointDistance(x1, y1, x2, y2) {
  427. return parseInt(Math.sqrt((x1 - x2) * (x1 - x2) + (y1 - y2) * (y1 - y2)));
  428. },
  429. _scale(x, y, scale) {
  430. let newPicWidth = parseInt(this.imgStartWidth * scale),
  431. newPicHeight = parseInt(this.imgStartHeight * scale),
  432. newIX = parseInt(x - newPicWidth * (x - this.imgX) / this.imgCurrentWidth),
  433. newIY = parseInt(y - newPicHeight * (y - this.imgY) / this.imgCurrentHeight);
  434. this._drawImage(newIX, newIY, newPicWidth, newPicHeight);
  435. },
  436. _clipper() {
  437. let imgData = null;
  438. try {
  439. imgData = this.$refs.pCanvas.toDataURL();
  440. } catch (e) {
  441. console.error('请在response header加上Access-Control-Allow-Origin,否则canvas无法裁剪未经许可的跨域图片');
  442. }
  443. this.$emit('ok', imgData);
  444. },
  445. _cancel() {
  446. this.$emit('cancel');
  447. },
  448. //public
  449. getBase64(dataURL) {
  450. return dataURL.replace(/^data:image\/(png|jpg);base64,/, '');
  451. }
  452. }
  453. }
  454. </script>