使用npm包js-web-screen-shot做网页截图,可以对截图加文字,箭头等等,类似于微信截图

<template><div class="m-feedback-wrap" :style="{ top: `${feedbackHeight}px` }"><div class="m-feedback-icon-wrap"><el-tooltipclass="item"effect="dark"content="内容"placement="left-end"><span:class="[`icon iconfont icon-xiaoxi m-feedback-icon`]"@click="handleOpen"@mousedown="handleFeedbackDrag"></span></el-tooltip></div><el-dialogtitle="标题":visible.sync="visible"width="1000px"append-to-bodyclass="m-dialog m-dialog-feedback"><div><el-form ref="form" :model="form" :rules="rules" label-width="100px"><div class="m-feedback-row-wrap"><el-row><el-col :span="24"><el-form-item label="问题描述" prop="describe"><el-input type="textarea" :rows="5" v-model="form.describe" /></el-form-item></el-col></el-row><el-row><el-col :span="24"><el-form-item label="附件" prop="attachment"><el-uploadclass="upload-demo m-feedback-upload"action="https://jsonplaceholder.typicode.com/posts/":on-preview="handlePreview":on-remove="handleRemove":before-remove="beforeRemove"multiple:on-exceed="handleExceed":file-list="fileList"list-type="picture"><el-button size="small" type="primary">点击上传</el-button><el-buttonsize="small"type="primary"@click.stop="handleCapture2">截图</el-button><div slot="tip" class="el-upload__tip">只能上传jpg/png文件,且不超过5M</div></el-upload></el-form-item></el-col></el-row></div></el-form></div><div slot="footer" class="dialog-footer"><el-button type="primary" @click="handleSubmit">提交</el-button><el-button @click="handleClose">取消</el-button></div></el-dialog></div>
</template><script>
import {Button,Tooltip,Dialog,Form,Row,Col,FormItem,Upload,Link,Input,
} from 'element-ui'import html2canvas from 'html2canvas'
import ScreenShot from 'js-web-screen-shot'
import temp from './images/m-temp.jpg'
// import temp from '../../../bizapp/m-biz.jpg'
import temp2 from './images/m-temp2.jpg'import './font/iconfont.css'
import './index.css'let defaultFileList = [{name: 'food.jpg',url: temp,},{name: 'food2.jpg',url: temp2,},
]
export default {name: 'Feedback-Index',data() {return {visible: false,fileList: [...defaultFileList],form: {},// 表单校验rules: {title: [{ required: true, message: '请输入标题', trigger: 'blur' }],},feedbackMouseY: 0,feedbackDragging: false,feedbackHeight: 200,}},components: {[Button.name]: Button,[Tooltip.name]: Tooltip,[Dialog.name]: Dialog,[Form.name]: Form,[Row.name]: Row,[Col.name]: Col,[FormItem.name]: FormItem,[Upload.name]: Upload,[Link.name]: Link,[Input.name]: Input,},mounted() {document.addEventListener('mousemove', this.handleMouseMove)document.addEventListener('mouseup', this.handleMouseUp)},methods: {handleCapture() {html2canvas(document.body).then(function (canvas) {document.body.appendChild(canvas)})},convertBase64UrlToBlob(urlData) {let bytes = window.atob(urlData.split(',')[1]) //去掉url的头,并转换为byte//处理异常,将ascii码小于0的转换为大于0let ab = new ArrayBuffer(bytes.length)let ia = new Uint8Array(ab)for (var i = 0; i < bytes.length; i++) {ia[i] = bytes.charCodeAt(i)}return new Blob([ab], {type: 'image/jpg',})},async handleCapture2() {this.visible = falsesetTimeout(() => {try {new ScreenShot({enableWebRtc: false,completeCallback: this.callback,triggerCallback: this.triggerCallback,})} catch (error) {console.log(error)}}, 500)},callback(value) {this.visible = trueconsole.log(value)let file = this.convertBase64UrlToBlob(value.base64)console.log(file)this.fileList = [...this.fileList,{name: `${Date.now()}.png`,//url: 'https://fuss10.elemecdn.com/3/63/4e7f3a15429bfda99bce42a18cdd1jpeg.jpeg?imageMogr2/thumbnail/360x360/format/webp/quality/100',url: value.base64,},]},triggerCallback() {this.visible = false},handleSubmit() {this.$refs['form'].validate((valid) => {if (valid) {console.log(this.form)this.visible = falsethis.$message({message: '成功',type: 'success',})this.$refs['form'].resetFields()this.fileList = [...defaultFileList]}})},handleClose() {this.visible = falsethis.$refs['form'].clearValidate()this.$refs['form'].resetFields()this.fileList = [...defaultFileList]},handleOpen() {this.visible = true},handleRemove(file, fileList) {console.log(file, fileList)this.fileList = [...fileList]},handlePreview(file) {console.log(file)},handleExceed(files, fileList) {this.$message.warning(`当前限制选择 3 个文件,本次选择了 ${files.length} 个文件,共选择了 ${files.length + fileList.length} 个文件`)},beforeRemove(file, fileList) {return this.$confirm(`确定删除这张图片吗?`, '提示', {type: 'warning',customClass: 'm-confirm',})},//#region 拖拽handleMouseMove(event) {if (this.feedbackDragging) {event.preventDefault()const deltaY = event.clientY - this.feedbackMouseYthis.feedbackMouseY = event.clientYlet tempFeedbackHeight = this.feedbackHeight + deltaYif (tempFeedbackHeight < 0) {tempFeedbackHeight = 0} else if (tempFeedbackHeight > window.innerHeight - 30) {tempFeedbackHeight = window.innerHeight - 30}this.feedbackHeight = tempFeedbackHeight}},handleMouseUp() {this.feedbackDragging = false},handleFeedbackDrag(event) {this.feedbackDragging = truethis.feedbackMouseY = event.clientY},//#endregion},
}
</script><style></style>

我开发的chatgpt项目:

https://chat.xutongbao.top

 

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/675707.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

服务运营 | 摘要:POMS 1月医疗文章合集

编者按 这一系列文章旨在给读者提供运筹学在医疗应用领域的概览。本文整理了Production and Operations Management在2024年1月刊中发布的医疗相关文章合集。 1.顾客订货行为对医疗产品分发效率的影响 文章名&#xff1a; How much do customer ordering practices drive med…

# 流量回放工具之 Goreplay 安装及初级使用

流量回放工具之 Goreplay 安装及初级使用 文章目录 流量回放工具之 Goreplay 安装及初级使用GoReplay使用场景环境搭建Golang环境安装Goreplay 安装 Windows 下使用基本使用其它使用注意点 GoReplay GoReplay是一个开源工具&#xff0c;用于捕获和重放实时HTTP流量到测试环境中…

代码随想录算法训练营第24天(回溯2)| 216.组合总和III 17.电话号码的字母组合

回溯的总结&#xff1a; 树的深度&#xff08;递归的层数&#xff09; 树的深度就是要取的数据的个数&#xff0c;通过path的size判断是否收集到足够的数据 树的宽度&#xff08;循环的范围&#xff09; 输的宽度就是搜索的范围&#xff0c;就是for循环的循环范围&#xff0c;…

Java学习网络编程

Java学习网络编程 大纲 网络相关概念IP地址网络协议InetAdressSocket 具体案例 1. 网络相关概念 网络 网络通信 2. IP地址 域名 3.网络协议 4. InetAdress 获得本机的名字和IP public static void main(String[] args) throws UnknownHostException {InetAddress inetA…

SpringBoot中全局异常处理

一、全局异常处理 SpringBoot给我们提供了ControllerAdvice和 ExceptionHandler注解 注解的作用&#xff1a; ControllerAdvice用来开启全局的异常捕获&#xff0c; ExceptionHandler用来说明捕获哪些异常&#xff0c;并对这些捕获的异常进行处理。 二、具体代码样例 Res…

前端学习之路(6) npm详解

npm 是什么&#xff1f; npm&#xff08;node package manager&#xff09;&#xff1a;node.js 的包管理器&#xff0c;用于node插件管理&#xff08;包括安装、卸载、管理依赖等&#xff09; &#xff0c;npm 是随同 node.js 一起安装的包管理工具&#xff0c;能解决 node.j…

《剑指 Offer》专项突破版 - 面试题 36 : 详解后缀表达式(C++ 实现)

题目链接&#xff1a;LCR 036. 逆波兰表达式求值 - 力扣&#xff08;LeetCode&#xff09; 题目&#xff1a; 后缀表达式是一种算术表达式&#xff0c;它的操作符在操作数的后面。输入一个用字符串数组表示的后缀表达式&#xff0c;请输出该后缀表达式的计算结果。假设输入的…

MySQL基础查询篇(7)-常用的字符串函数

MySQL数据库是目前广泛应用于各种系统中的一种关系型数据库管理系统。在MySQL中&#xff0c;有许多常见的字符串函数&#xff0c;可以对字符串进行各种处理和操作。本文将介绍MySQL数据库中常用的一些字符串函数&#xff0c;并提供详细示例。 CONCAT函数&#xff1a;用于将两个…

小项目:蓝牙模块点亮RGB三色灯

在之前的教程中&#xff0c;我们学习了蓝牙模块的原理&#xff0c;并动手写了驱动&#xff0c;实现了串口的接收和发送。本次我们就来教大家如何使用蓝牙串口控制灯。这是一个简单的示例&#xff0c;展示了如何将蓝牙通信与硬件控制相结合&#xff0c;实现远程控制的功能。你也…

vue3+vite+ts 配置commit强制码提交规范配置 commitlint

配置 git 提交时的 commit 信息&#xff0c;统一提交 git 提交规范 安装命令: npm install -g commitizen npm i cz-customizable npm i commitlint/config-conventional commitlint/cli -D 文件配置 根路径创建文件 commitlint.config.js module.exports {// 继承的规…

tsgctf-2021-lkgit-无锁竞争-userfaultfd

启动脚本 qemu-system-x86_64 \-kernel ./bzImage \-initrd ./rootfs.cpio \-nographic \-monitor /dev/null \-cpu kvm64,smep,smap \-append "consolettyS0 kaslr oopspanic panic1 quiet" \-no-reboot \-m 256M题目 lkgit_hash_object #define HASH_SIZE …

【Linux】进程学习(一):基本认识

目录 1.基本概念2.初步理解3.描述进程-PCB3.1task_struct-PCB的一种3.2task_ struct内容分类 4.组织进程5.查看进程5.1通过ps指令查看5.2通过系统目录查看 6.通过系统调用获取进程的PID和PPID7.通过系统调用创建进程-fork初识 1.基本概念 课本概念&#xff1a;程序的一个执行实…

QGIS介绍

一.基本概念 QGIS的官方网站为&#xff1a;https://www.qgis.org Github地址&#xff1a;https://github.com/qgis/QGIS QGIS采用开源证书GNU GPLv2 (GNU General Public License version 2&#xff09;发布&#xff0c;主要采用C语言开发&#xff0c;用户界面依赖Qt平台。 二…

PlantUML绘制UML图教程

UML&#xff08;Unified Modeling Language&#xff09;是一种通用的建模语言&#xff0c;广泛用于软件开发中对系统进行可视化建模。PlantUML是一款强大的工具&#xff0c;通过简单的文本描述&#xff0c;能够生成UML图&#xff0c;包括类图、时序图、用例图等。PlantUML是一款…

【Linux】线程

线程 我们常常会在linux中或者在操作系统这门课中听到进程和线程的名称&#xff0c;我们之前认识了进程的概念&#xff0c;现在我们来了解一下线程的概念 线程概念&#xff1a; 什么是线程 在一个程序里的一个执行路线就叫做线程&#xff08;thread&#xff09;。更准确的定…

Linux命令-base64命令(编码/解码文件或标准输入输出)

说明 base64将 文件 或 标准输入 编码或解码为标准输出; 语法 base64 [OPTION]... [FILE]参数 -d, --decode # 解码 -i, --ignore-garbage # 解码时&#xff0c;忽略非字母字符 -w, --wrapCOLS # 在指定的字符数后自动换行(默认为76), 0 为禁用自动换行--help # 显示此帮助…

k8s 部署java应用 基于ingress+jar包

k8 集群ingress的访问模式 先部署一个namespace 命名空间 vim namespace.yaml kind: Namespace apiVersion: v1 metadata:name: ingress-testlabels:env: ingress-test 在部署deployment deployment是pod层一层封装。可以实现多节点部署 资源分配 回滚部署等方式。 部署的…

牛客网SQL进阶127: 月总刷题数和日均刷题数

官网链接&#xff1a; 月总刷题数和日均刷题数_牛客题霸_牛客网现有一张题目练习记录表practice_record&#xff0c;示例内容如下&#xff1a;。题目来自【牛客题霸】https://www.nowcoder.com/practice/f6b4770f453d4163acc419e3d19e6746?tpId240 0 问题描述 基于练习记录表…

OpenAI使用的海量数据集介绍

1. OpenAI使用的数据 OpenAI为了训练其尖端的自然语言处理模型&#xff0c;如GPT-4&#xff0c;采用了极为庞大的数据集。虽然具体的细节可能不完全公开&#xff0c;但我们可以根据历史信息和公开报道推测&#xff0c;这些数据集通常包含&#xff1a; WebText&#xff1a;早期…

ComfyUI 学习笔记

目录 ComfyUI 入门教程 什么是ComfyUI&#xff1f; windows安装教程&#xff1a; 组件技巧学习 ComfyUI 入门教程 老V带你学comfyUI-基础入门 - 知乎 什么是ComfyUI&#xff1f; ComfyUI 是一个基于节点的 GUI&#xff0c;用于Stable Diffusion。你可以通过将不同的no…