记录--uni-app实现京东canvas拍照识图功能

2023-10-13 09:40

本文主要是介绍记录--uni-app实现京东canvas拍照识图功能,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

这里给大家分享我在网上总结出来的一些知识,希望对大家有所帮助

最近公司出了一个新的功能模块(如下图),大提上可以描述为实现拍照完上传图片,拖动四方框拍照完成上传功能,大体样子如下图。但是我找遍了 dcloud 插件市场,找到的插件都是移动背景图片来实现裁剪的,跟京东的功能是相反的,没办法只能自己来实现这么一个插件。

第一步

首先就需要实现一个四方框的功能了。从上图可知,四方框有一下几个特点

  1. 四个角粘连外框,随着框的大小和移动范围紧缚移动
  2. 四方框可随意四个方向拖动
  3. 方框外区域阴影不影响方框内

那么我们根据这个特性来实现下这个功能,对于 css 规范的话使用 bem 规范

<div class="clip__content"><div v-for="(item, index) in 4" :key="index" class="clip__edge"></div>
</div>

/more

$edge-border-width: 6rpx;
.clip {&__content {position: fixed;width: 400rpx;height: 400rpx;left: 0;top: 0;border: 1px solid red;z-index: 4;overflow: hidden;box-shadow: rgba(0, 0, 0, 0.5) 0 0 0 200vh;}&__edge {position: absolute;width: 34rpx;height: 34rpx;border: 10rpx solid red;pointer-events: auto;z-index: 2;&::before {content: "";position: absolute;z-index: 2;width: 40rpx;height: 40rpx;background-color: transparent;}&:nth-child(1) {left: $edge-border-width;top: $edge-border-width;border-bottom-width: 0 !important;border-right-width: 0 !important;&:before {top: -50%;left: -50%;}}&:nth-child(2) {right: $edge-border-width;top: $edge-border-width;border-bottom-width: 0 !important;border-left-width: 0 !important;&:before {top: -50%;left: 50%;}}&:nth-child(3) {left: $edge-border-width;bottom: $edge-border-width;border-top-width: 0 !important;border-right-width: 0 !important;&:before {bottom: -50%;left: -50%;}}&:nth-child(4) {right: $edge-border-width;bottom: $edge-border-width;border-top-width: 0 !important;border-left-width: 0 !important;&:before {bottom: -50%;left: 50%;}}}

根据上面的 html 和 css 出来的样式大概如下图 外部的阴影效果我们用: box-shadow: rgba(0, 0, 0, 0.5) 0 0 0 200vh 来达成

第二步

第二步的话就要实现移动功能了,这里是一个比较考验耐心的地方,因为涉及到多个方向的变化,需要不断地进行调试,在此之前需要先分析下四个角变化的特性,下面先看 4 个角的移动特性(以 H5 思维)

  1. 第一个角的移动会改变方框的 left,top,width,right4 个值
  2. 第二个角的移动会改变方框的 top,with,height3 个值
  3. 第三个角的移动会改变方框的 left, width,height3 个值
  4. 第四个角的移动会改变方框的 width,height2 个值
  5. 四个角的移动都不能小于 4 个角的宽高,四个角的移动都不能超过屏幕,相应的逻辑需要做一下限制

首先需要获取下屏幕宽度,区域高度(因为头部可能会有导航栏目占位,所以不拿屏幕高度),四方框初始宽高,

uni.getSystemInfo({success: res => {console.log(res)this.systemInfo = res}
})
uni.createSelectorQuery().select('.clip__content').fields({ size: true }, data => {this.width = data.widththis.height = data.height}).exec()
uni.createSelectorQuery().select('.clip').fields({ size: true }, data => {this.screenHeight = data.height}).exec()

后续的话就可以进行四个角拖拽了,这里用到了 touchStart 和 touchMove,动态地为方框绑定样式

<divv-for="(item, index) in 4"class="clip__edge"@touchstart.stop.prevent="edgeTouchStart"@touchmove.stop.prevent="e => edgeTouchMove(e, index)"@touchend.stop.prevent="edgeTouchEnd"
></div>

接下来开始写逻辑

edgeTouchStart(e) {// 记录坐标xy初始位置this.clientX = e.changedTouches[0].clientX;this.clientY = e.changedTouches[0].clientY;
},
edgeTouchMove(e, index) {const currX = e.changedTouches[0].clientX;const currY = e.changedTouches[0].clientY;// 记录坐标差const moveX = currX - this.clientX;const moveY = currY - this.clientY;// 更新坐标位置this.clientX = currX;this.clientY = currY;const { width, height, left, top, screenHeight } = this;const { screenWidth } = this.systemInfo;// 初始化最大宽高let maxWidth = 0,maxHeight = 0,maxTop = top + moveY < 0 ? 0 : top + moveY,maxLeft = left + moveX < 0 ? 0 : left + moveX;// 四个角的宽高限制if (index % 2 === 0) {maxWidth = width - moveX > screenWidth ? screenWidth : width - moveX;} else {maxWidth = width + moveX > screenWidth ? screenWidth : width + moveX;}if (index < 2) {maxHeight =height - moveY > screenHeight ? screenHeight : height - moveY;} else {maxHeight =height + moveY > screenHeight ? screenHeight : height + moveY;}// 四个角的规则计算逻辑 四边方框暂定40 更详细的要用.createSelectorQuery()去拿if (index === 0) {if (width - moveX <= 40 || height - moveY <= 40) return;console.log(maxLeft);this.clipStyle = {width: maxWidth,height: maxHeight,left: maxLeft,top: maxTop,};this.width = maxWidth;this.height = maxHeight;this.top = maxTop;this.left = maxLeft;// 右上角} else if (index === 1) {if (width + moveX <= 40 || height - moveY <= 40) return;this.clipStyle = {width: maxWidth,height: maxHeight,left,top: maxTop,};this.width = maxWidth;this.height = maxHeight;this.top = maxTop;} else if (index === 2) {if (width - moveX <= 40 || height + moveY <= 40) return;this.clipStyle = {width: maxWidth,height: maxHeight,left: maxLeft,top,};this.width = maxWidth;this.height = maxHeight;this.left = maxLeft;} else if (index === 3) {if (width + moveX <= 40 || height + moveY <= 40) return;this.clipStyle = {width: maxWidth,height: maxHeight,left,top,};this.width = maxWidth;this.height = maxHeight;}
}

效果如下图

第三步

四个角拖拽逻辑完善之后,下一步目标就是做四方框的拖拽,这边需要对四方框的拖拽做一次限制

<divclass="clip__content":style="style"@touchstart.stop.prevent="clipTouchStart"@touchmove.stop.prevent="clipTouchMove"
>...
</div>
clipTouchStart(e) {this.touchX = e.changedTouches[0].pageX;this.touchY = e.changedTouches[0].pageY;
},
clipTouchMove(e) {const { screenWidth } = this.systemInfo;const currX = e.changedTouches[0].pageX;const currY = e.changedTouches[0].pageY;const moveX = currX - this.touchX;const moveY = currY - this.touchY;this.touchX = currX;this.touchY = currY;// 边框限制逻辑if (this.left + moveX < 0) {this.left = 0;} else if (this.left + moveX > screenWidth - this.width) {this.left = screenWidth - this.width;} else {this.left = this.left + moveX;}if (this.top + moveY < 0) {this.top = 0;} else if (this.top + moveY > this.screenHeight - this.height) {this.top = this.screenHeight - this.height;} else {this.top = this.top + moveY;}this.clipStyle = {...this.clipStyle,left: this.left,top: this.top,};
},

效果如下图:

第四步就是做我们的截图了,这里用到了 canvas

<div class="clip__content">...<canvas class="clip-canvas" canvas-id="clip-canvas"></canvas>
</div>

逻辑的话目前这个例子是使用了网络的 url 图片 所以要进行 download,如果是不用网络图片,那么这一句可以删除换成其他的获取图片 api

initCanvas() {uni.showLoading({title: "加载中...",});uni.createSelectorQuery().select(".clip__content").fields({size: true,scrollOffset: true,rect: true,context: true,computedStyle: ["transform", "translateX"],scrollOffset: true,},(data) => {uni.downloadFile({url: this.imageUrl,success: (res) => {this.canvasInstance = uni.createCanvasContext("clip-canvas",this);this.canvasInstance.drawImage(res.tempFilePath,-data.left,-data.top,this.systemInfo.screenWidth,this.screenHeight,0,0);this.canvasInstance.draw(false,(() => {setTimeout(() => {uni.canvasToTempFilePath({x: 0,y: 0,width: data.width,height: data.height,dWidth: data.width,dHeight: data.height,fileType: "jpg",canvasId: "clip-canvas",success: (data) => {uni.hideLoading();this.url = data.tempFilePath;// this.canvasInstance.save();},},this);}, 500);})());},});}).exec();
},

效果如图所示:

本文转载于:

https://juejin.cn/post/6971977095652048910

如果对您有所帮助,欢迎您点个关注,我会定时更新技术文档,大家一起讨论学习,一起进步。

 

这篇关于记录--uni-app实现京东canvas拍照识图功能的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/202341

相关文章

python使用watchdog实现文件资源监控

《python使用watchdog实现文件资源监控》watchdog支持跨平台文件资源监控,可以检测指定文件夹下文件及文件夹变动,下面我们来看看Python如何使用watchdog实现文件资源监控吧... python文件监控库watchdogs简介随着Python在各种应用领域中的广泛使用,其生态环境也

el-select下拉选择缓存的实现

《el-select下拉选择缓存的实现》本文主要介绍了在使用el-select实现下拉选择缓存时遇到的问题及解决方案,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的... 目录项目场景:问题描述解决方案:项目场景:从左侧列表中选取字段填入右侧下拉多选框,用户可以对右侧

最好用的WPF加载动画功能

《最好用的WPF加载动画功能》当开发应用程序时,提供良好的用户体验(UX)是至关重要的,加载动画作为一种有效的沟通工具,它不仅能告知用户系统正在工作,还能够通过视觉上的吸引力来增强整体用户体验,本文给... 目录前言需求分析高级用法综合案例总结最后前言当开发应用程序时,提供良好的用户体验(UX)是至关重要

Python pyinstaller实现图形化打包工具

《Pythonpyinstaller实现图形化打包工具》:本文主要介绍一个使用PythonPYQT5制作的关于pyinstaller打包工具,代替传统的cmd黑窗口模式打包页面,实现更快捷方便的... 目录1.简介2.运行效果3.相关源码1.简介一个使用python PYQT5制作的关于pyinstall

使用Python实现大文件切片上传及断点续传的方法

《使用Python实现大文件切片上传及断点续传的方法》本文介绍了使用Python实现大文件切片上传及断点续传的方法,包括功能模块划分(获取上传文件接口状态、临时文件夹状态信息、切片上传、切片合并)、整... 目录概要整体架构流程技术细节获取上传文件状态接口获取临时文件夹状态信息接口切片上传功能文件合并功能小

python实现自动登录12306自动抢票功能

《python实现自动登录12306自动抢票功能》随着互联网技术的发展,越来越多的人选择通过网络平台购票,特别是在中国,12306作为官方火车票预订平台,承担了巨大的访问量,对于热门线路或者节假日出行... 目录一、遇到的问题?二、改进三、进阶–展望总结一、遇到的问题?1.url-正确的表头:就是首先ur

C#实现文件读写到SQLite数据库

《C#实现文件读写到SQLite数据库》这篇文章主要为大家详细介绍了使用C#将文件读写到SQLite数据库的几种方法,文中的示例代码讲解详细,感兴趣的小伙伴可以参考一下... 目录1. 使用 BLOB 存储文件2. 存储文件路径3. 分块存储文件《文件读写到SQLite数据库China编程的方法》博客中,介绍了文

Redis主从复制实现原理分析

《Redis主从复制实现原理分析》Redis主从复制通过Sync和CommandPropagate阶段实现数据同步,2.8版本后引入Psync指令,根据复制偏移量进行全量或部分同步,优化了数据传输效率... 目录Redis主DodMIK从复制实现原理实现原理Psync: 2.8版本后总结Redis主从复制实

JAVA利用顺序表实现“杨辉三角”的思路及代码示例

《JAVA利用顺序表实现“杨辉三角”的思路及代码示例》杨辉三角形是中国古代数学的杰出研究成果之一,是我国北宋数学家贾宪于1050年首先发现并使用的,:本文主要介绍JAVA利用顺序表实现杨辉三角的思... 目录一:“杨辉三角”题目链接二:题解代码:三:题解思路:总结一:“杨辉三角”题目链接题目链接:点击这里

基于Python实现PDF动画翻页效果的阅读器

《基于Python实现PDF动画翻页效果的阅读器》在这篇博客中,我们将深入分析一个基于wxPython实现的PDF阅读器程序,该程序支持加载PDF文件并显示页面内容,同时支持页面切换动画效果,文中有详... 目录全部代码代码结构初始化 UI 界面加载 PDF 文件显示 PDF 页面页面切换动画运行效果总结主