11 2022 档案

摘要:一,js代码: <html> <head> <meta charset="utf-8"/> <title>测试</title> </head> <body> <img id="img" src="" /> <script> //记录开始时间 let a = new Date(); console.l 阅读全文
posted @ 2022-11-20 16:02 刘宏缔的架构森林 阅读(140) 评论(0) 推荐(0) 编辑
摘要:一,得到图片的base64 1,打开页面后,在当前页面打开 开发者工具 菜单->更多工具->开发者工具 2,在elements页面,找到目标canvas,给它加一个id,如图: 3,在console标签页,输入: document.getElementById('dest').toDataURL(" 阅读全文
posted @ 2022-11-19 10:12 刘宏缔的架构森林 阅读(797) 评论(0) 推荐(0) 编辑
摘要:一,安装html2canvas 1,官网: https://html2canvas.hertzen.com/ 如图: 代码站: https://github.com/niklasvh/html2canvas 2,通过npm安装 liuhongdi@lhdpc:/data/vue/touch$ npm 阅读全文
posted @ 2022-11-13 08:09 刘宏缔的架构森林 阅读(1440) 评论(0) 推荐(0) 编辑
摘要:一,js代码: <template> <div> <div style="width:800px;margin: auto;display: flex;flex-direction: column;"> <div>请选择上传图片: <input type="file" id="back" ref=" 阅读全文
posted @ 2022-11-10 18:24 刘宏缔的架构森林 阅读(1601) 评论(0) 推荐(0) 编辑
摘要:一,js代码: <template> <div> <div style="width:800px;margin: auto;display: flex;flex-direction: column;"> <div>请选择上传图片: <input type="file" id="back" ref=" 阅读全文
posted @ 2022-11-08 15:51 刘宏缔的架构森林 阅读(862) 评论(0) 推荐(0) 编辑
摘要:一,php中查看当前用户: php代码: public function ocr() { $daemon_user = getenv('USERNAME') ?: getenv('USER'); $script_user = get_current_user(); return Result::Su 阅读全文
posted @ 2022-11-05 18:41 刘宏缔的架构森林 阅读(349) 评论(0) 推荐(0) 编辑
摘要:一,安装easyocr: 1,官网: https://www.jaided.ai/ 项目代码地址: https://github.com/JaidedAI/EasyOCR 通过pip安装: [root@blog ~]# pip3 install easyocr 查看已安装的easyocr的版本: [ 阅读全文
posted @ 2022-11-01 17:35 刘宏缔的架构森林 阅读(2838) 评论(0) 推荐(0) 编辑