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