屏幕放大缩小及标注神器【Zommit】

Zoomit是一个非常实用的电脑屏幕放大镜与屏幕缩放绘图注释工具,可用于投影演示辅助,通过Zoomit,可以运行热键激活放大与直接在屏幕上划线的功能。Zoomit唯有一个exe文件,完全免费、易于使用。通过快捷键可以很方便地调用Zoomit三项功能: 屏幕放大、屏幕注释、定时提醒。

功能1:屏幕缩放

按下快捷键(默认Ctrl+1),进入放大模式:

  • 1、用鼠标滚轮或者上下方向键,可以改变放大比例。
  • 2、屏幕内容将放大后(默认2倍)显示。
  • 3、移动光标,放大区域将随之改变。
  • 4、按下Esc键 或 鼠标右键,会退出放大模式。
  • 5、Ctrl+S:保存标注或者放大后的画面。

功能2:屏幕标注

按下快捷键(默认Ctrl+2),或在放大模式下按下鼠标左键,可进入标注模式:

  • 1、按住Ctrl键,使用鼠标滚轮或者上下箭头键调整画笔的粗细。
  • 2、画笔颜色:R红色;G绿色;B蓝色;O橙色;Y黄色;P粉色。
  • 3、不同快捷键可画出不同的形状:
    • 按住Shift键可以画出直线;
    • 按住Ctrl键可以画出长方形;
    • 按住Tab键可以画出椭圆形;
    • Shift+Ctrl 可以画出箭头
  •  4、Ctrl+Z:撤销最后的标注。

注意:

(1)注释功能可以与缩放屏幕比例的功能一起使用,例如先放大要强调的屏幕范围,再使用注释功能进行说明,也可以独自进入注释模式使用注释功能,强调您所想引起别人注意的屏幕范围。

(2)进入标注模式后,按'T'可以进入打字模式,标注不支持中文,仅支持英文。

功能3:定时提醒

通过快捷键(默认ctrl+3)或点击Zoomit的托盘图标菜单,可以进入定时提醒模式:

  • 1、使用此功能时会暂时将桌面利用白色屏蔽覆盖,并在白色屏蔽上出现倒数计时的时间。
  • 2、用箭头键可以增加或减少时间。可以点击ZoomIt的图标再激活定时器,用Esc退出。

最后说:

总体来讲,Zoomit是一个非常棒的屏幕演示工具,当你放映PowerPoint胶片时,通过Zoomit,可以通过热键激活放大与直接在屏幕上划线的功能,划线可以有不同的颜色,还可以画方框、圆弧等,讲解胶片需要放大细节、勾重点或者做一些辅助标记时非常有用。

获取方式:

链接: https://pan.baidu.com/s/1FHOD3XjM8XtIUi6fIAlidA

提取码: ceee 

如果失效,请加V:htxrc888

  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
要实现图片标注放大缩小并存储标注数据,可以使用以下步骤: 1. 加载图片:使用Vue的`<img>`标签加载图片。 2. 标注图片:使用Vue的`<canvas>`标签绘制图片,通过鼠标事件监听用户的标注操作,将标注数据存储在Vue的数据中。 3. 放大缩小:通过CSS的`transform`属性实现图片的放大缩小效果,同时也需要更新绘制标注的画布大小和坐标。 4. 存储标注数据:将标注数据存储在本地存储或后端数据库中,可以使用Vue的`localStorage`或`axios`库实现。 下面是一个简单的示例代码: ``` <template> <div> <img ref="image" :src="imageUrl" @load="onImageLoad"> <div ref="canvasWrapper" class="canvas-wrapper"> <canvas ref="canvas" @mousedown="onMouseDown" @mousemove="onMouseMove" @mouseup="onMouseUp"></canvas> </div> </div> </template> <script> export default { data() { return { imageUrl: 'https://image.url', imageWidth: 0, imageHeight: 0, canvasWidth: 0, canvasHeight: 0, canvasLeft: 0, canvasTop: 0, isMouseDown: false, startX: 0, startY: 0, annotations: [] } }, methods: { onImageLoad() { this.imageWidth = this.$refs.image.width this.imageHeight = this.$refs.image.height this.canvasWidth = this.imageWidth this.canvasHeight = this.imageHeight this.$refs.canvas.width = this.canvasWidth this.$refs.canvas.height = this.canvasHeight this.canvasLeft = this.$refs.canvasWrapper.offsetLeft this.canvasTop = this.$refs.canvasWrapper.offsetTop this.drawAnnotations() }, onMouseDown(event) { this.isMouseDown = true this.startX = event.pageX - this.canvasLeft this.startY = event.pageY - this.canvasTop }, onMouseMove(event) { if (this.isMouseDown) { const x = event.pageX - this.canvasLeft const y = event.pageY - this.canvasTop const width = x - this.startX const height = y - this.startY const annotation = { x: this.startX, y: this.startY, width, height } this.annotations.push(annotation) this.drawAnnotations() } }, onMouseUp() { this.isMouseDown = false }, drawAnnotations() { const ctx = this.$refs.canvas.getContext('2d') ctx.clearRect(0, 0, this.canvasWidth, this.canvasHeight) ctx.drawImage(this.$refs.image, 0, 0, this.imageWidth, this.imageHeight) for (const annotation of this.annotations) { ctx.strokeRect(annotation.x, annotation.y, annotation.width, annotation.height) } }, zoomIn() { this.canvasWidth *= 1.2 this.canvasHeight *= 1.2 this.$refs.canvas.width = this.canvasWidth this.$refs.canvas.height = this.canvasHeight this.drawAnnotations() }, zoomOut() { this.canvasWidth /= 1.2 this.canvasHeight /= 1.2 this.$refs.canvas.width = this.canvasWidth this.$refs.canvas.height = this.canvasHeight this.drawAnnotations() }, saveAnnotations() { localStorage.setItem('annotations', JSON.stringify(this.annotations)) }, loadAnnotations() { const annotations = JSON.parse(localStorage.getItem('annotations')) if (annotations) { this.annotations = annotations this.drawAnnotations() } } } } </script> <style scoped> .canvas-wrapper { position: relative; overflow: hidden; } canvas { position: absolute; top: 0; left: 0; } </style> ```

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值