当前位置: 首页 > news >正文

【HarmonyOS】头像圆形裁剪功能之手势放大缩小,平移,双击缩放控制(三)

【HarmonyOS】头像裁剪之手势放大缩小,平移,双击缩放控制(三)

一、DEMO效果图:
在这里插入图片描述
在这里插入图片描述

二、开发思路:
使用矩阵变换控制图片的放大缩小和平移形态。

通过监听点击手势TapGesture,缩放手势PinchGesture,拖动手势PanGesture进行手势操作的功能实现。

通过对矩阵变换参数mMatrix的赋值,将矩阵变换参数赋值给image控件。实现手势操作和图片操作的同步。

在这里插入图片描述
该参数拥有四维坐标,只需要通过手势操作调整四个参数即可实现。通过.transform(this.mMatrix)赋值给image控件。

通过image的.onComplete(this.onLoadImgComplete)函数回调,获取图片控件的宽高和内容宽高等参数。以此为基准,手势操作调整的都是这些值。

三、DEMO示例代码:

import router from '@ohos.router';
import { CropMgr, ImageInfo } from '../manager/CropMgr';
import { image } from '@kit.ImageKit';
import Matrix4 from '@ohos.matrix4';
import FS from '@ohos.file.fs';export class LoadResult {width: number = 0;height: number = 0;componentWidth: number = 0;componentHeight: number = 0;loadingStatus: number = 0;contentWidth: number = 0;contentHeight: number = 0;contentOffsetX: number = 0;contentOffsetY: number = 0;
}

export struct CropPage {private TAG: string = "CropPage";private mRenderingContextSettings: RenderingContextSettings = new RenderingContextSettings(true);private mCanvasRenderingContext2D: CanvasRenderingContext2D = new CanvasRenderingContext2D(this.mRenderingContextSettings);// 加载图片 mImg: PixelMap | undefined = undefined;// 图片矩阵变换参数 mMatrix: object = Matrix4.identity().translate({ x: 0, y: 0 }).scale({ x: 1, y: 1}); mImageInfo: ImageInfo = new ImageInfo();private tempScale = 1;private startOffsetX: number = 0;private startOffsetY: number = 0;aboutToAppear(): void {console.log(this.TAG, "aboutToAppear start");let temp = CropMgr.Ins().mSourceImg;console.log(this.TAG, "aboutToAppear temp: " + JSON.stringify(temp));this.mImg = temp;console.log(this.TAG, "aboutToAppear end");}private getImgInfo(){return this.mImageInfo;}onClickCancel = ()=>{router.back();}onClickConfirm = async ()=>{if(!this.mImg){console.error(this.TAG, " onClickConfirm mImg error null !");return;}// 存当前裁剪的图// ...router.back();}/*** 复制图片* @param pixel* @returns*/async copyPixelMap(pixel: PixelMap): Promise<PixelMap> {const info: image.ImageInfo = await pixel.getImageInfo();const buffer: ArrayBuffer = new ArrayBuffer(pixel.getPixelBytesNumber());await pixel.readPixelsToBuffer(buffer);const opts: image.InitializationOptions = {editable: true,pixelFormat: image.PixelMapFormat.RGBA_8888,size: { height: info.size.height, width: info.size.width }};return image.createPixelMap(buffer, opts);}/*** 图片加载回调*/private onLoadImgComplete = (msg: LoadResult) => {this.getImgInfo().loadResult = msg;this.checkImageScale();}/*** 绘制画布中的取景框*/private onCanvasReady = ()=>{if(!this.mCanvasRenderingContext2D){console.error(this.TAG, "onCanvasReady error mCanvasRenderingContext2D null !");return;}let cr = this.mCanvasRenderingContext2D;// 画布颜色cr.fillStyle = '#AA000000';let height = cr.height;let width = cr.width;cr.fillRect(0, 0, width, height);// 圆形的中心点let centerX = width / 2;let centerY = height / 2;// 圆形半径let radius = Math.min(width, height) / 2 - px2vp(100);cr.globalCompositeOperation = 'destination-out'cr.fillStyle = 'white'cr.beginPath();cr.arc(centerX, centerY, radius, 0, 2 * Math.PI);cr.fill();cr.globalCompositeOperation = 'source-over';cr.strokeStyle = '#FFFFFF';cr.beginPath();cr.arc(centerX, centerY, radius, 0, 2 * Math.PI);cr.closePath();cr.lineWidth = 1;cr.stroke();}build() {RelativeContainer() {// 黑色底图Row().width("100%").height("100%").backgroundColor(Color.Black)// 用户图Image(this.mImg).objectFit(ImageFit.Contain).width('100%').height('100%').transform(this.mMatrix).alignRules({center: { anchor: '__container__', align: VerticalAlign.Center },middle: { anchor: '__container__', align: HorizontalAlign.Center }}).onComplete(this.onLoadImgComplete)// 取景框Canvas(this.mCanvasRenderingContext2D).width('100%').height('100%').alignRules({center: { anchor: '__container__', align: VerticalAlign.Center },middle: { anchor: '__container__', align: HorizontalAlign.Center }}).backgroundColor(Color.Transparent).onReady(this.onCanvasReady).clip(true).backgroundColor("#00000080")Row(){Button("取消").size({width: px2vp(450),height: px2vp(200)}).onClick(this.onClickCancel)Blank()Button("确定").size({width: px2vp(450),height: px2vp(200)}).onClick(this.onClickConfirm)}.width("100%").height(px2vp(200)).margin({ bottom: px2vp(500) }).alignRules({center: { anchor: '__container__', align: VerticalAlign.Bottom },middle: { anchor: '__container__', align: HorizontalAlign.Center }}).justifyContent(FlexAlign.Center)}.width("100%").height("100%").priorityGesture(// 点击手势TapGesture({// 点击次数count: 2,// 一个手指fingers: 1}).onAction((event: GestureEvent)=>{console.log(this.TAG, "TapGesture onAction start");if(!event){return;}if(this.getImgInfo().scale != 1){this.getImgInfo().scale = 1;this.getImgInfo().offsetX = 0;this.getImgInfo().offsetY = 0;this.mMatrix = Matrix4.identity().translate({x: this.getImgInfo().offsetX,y: this.getImgInfo().offsetY}).scale({x: this.getImgInfo().scale,y: this.getImgInfo().scale})}else{this.getImgInfo().scale = 2;this.mMatrix = Matrix4.identity().translate({x: this.getImgInfo().offsetX,y: this.getImgInfo().offsetY}).scale({x: this.getImgInfo().scale,y: this.getImgInfo().scale})}console.log(this.TAG, "TapGesture onAction end");})).gesture(GestureGroup(GestureMode.Parallel,// 缩放手势PinchGesture({// 两指缩放fingers: 2}).onActionStart(()=>{console.log(this.TAG, "PinchGesture onActionStart");this.tempScale = this.getImgInfo().scale;}).onActionUpdate((event)=>{console.log(this.TAG, "PinchGesture onActionUpdate" + JSON.stringify(event));if(event){this.getImgInfo().scale = this.tempScale * event.scale;this.mMatrix = Matrix4.identity().translate({x: this.getImgInfo().offsetX,y: this.getImgInfo().offsetY}).scale({x: this.getImgInfo().scale,y: this.getImgInfo().scale})}}).onActionEnd(()=>{console.log(this.TAG, "PinchGesture onActionEnd");}),// 拖动手势PanGesture().onActionStart(()=>{console.log(this.TAG, "PanGesture onActionStart");this.startOffsetX = this.getImgInfo().offsetX;this.startOffsetY = this.getImgInfo().offsetY;}).onActionUpdate((event)=>{console.log(this.TAG, "PanGesture onActionUpdate" + JSON.stringify(event));if(event){let distanceX: number = this.startOffsetX + vp2px(event.offsetX) / this.getImgInfo().scale;let distanceY: number = this.startOffsetY + vp2px(event.offsetY) / this.getImgInfo().scale;this.getImgInfo().offsetX = distanceX;this.getImgInfo().offsetY = distanceY;this.mMatrix = Matrix4.identity().translate({x: this.getImgInfo().offsetX,y: this.getImgInfo().offsetY}).scale({x: this.getImgInfo().scale,y: this.getImgInfo().scale})}}).onActionEnd(()=>{console.log(this.TAG, "PanGesture onActionEnd");})))}
}

相关文章:

  • 北京网站建设多少钱?
  • 辽宁网页制作哪家好_网站建设
  • 高端品牌网站建设_汉中网站制作
  • 如何在Centos7安装“influxDB“?
  • 网络压缩之网络剪枝(network pruning)
  • ABAP CURSOR游标的应用1
  • Acrobat Pro DC 2023 for Mac/Win:全能型PDF编辑器深度解析
  • c++ 创建对象 和 使用对象
  • LlamaIndex 使用 RouterOutputAgentWorkflow
  • Github 2024-09-02 开源项目周报 Top13
  • mysql的整理
  • AIGC大模型智能擦除:Sanster/IOPaint,python(1)
  • Linux下的exec函数簇
  • 【MySQL】深圳大学数据库实验二
  • c++ +Opencv实现车牌自动识别
  • c++162 类的封装和访问
  • Linux 中的 wget 命令介绍以及使用
  • 行空板上YOLO和Mediapipe视频物体检测的测试
  • 9月CHINA-PUB-OPENDAY技术沙龙——IPHONE
  • 【腾讯Bugly干货分享】从0到1打造直播 App
  • 【跃迁之路】【733天】程序员高效学习方法论探索系列(实验阶段490-2019.2.23)...
  • 4个实用的微服务测试策略
  • CSS魔法堂:Absolute Positioning就这个样
  • JavaScript新鲜事·第5期
  • JS 面试题总结
  • Laravel Mix运行时关于es2015报错解决方案
  • MQ框架的比较
  • Perseus-BERT——业内性能极致优化的BERT训练方案
  • Python 反序列化安全问题(二)
  • vue数据传递--我有特殊的实现技巧
  • 从零搭建Koa2 Server
  • 对JS继承的一点思考
  • 工作手记之html2canvas使用概述
  • 回顾2016
  • 每天一个设计模式之命令模式
  • 写代码的正确姿势
  • 要让cordova项目适配iphoneX + ios11.4,总共要几步?三步
  • 一起来学SpringBoot | 第十篇:使用Spring Cache集成Redis
  • 原生Ajax
  • 正则表达式
  • Redis4.x新特性 -- 萌萌的MEMORY DOCTOR
  • ###C语言程序设计-----C语言学习(3)#
  • #mysql 8.0 踩坑日记
  • #中的引用型是什么意识_Java中四种引用有什么区别以及应用场景
  • (1/2)敏捷实践指南 Agile Practice Guide ([美] Project Management institute 著)
  • (2)(2.10) LTM telemetry
  • (ISPRS,2023)深度语义-视觉对齐用于zero-shot遥感图像场景分类
  • (TipsTricks)用客户端模板精简JavaScript代码
  • (草履虫都可以看懂的)PyQt子窗口向主窗口传递参数,主窗口接收子窗口信号、参数。
  • (附源码)springboot宠物医疗服务网站 毕业设计688413
  • (十三)Java springcloud B2B2C o2o多用户商城 springcloud架构 - SSO单点登录之OAuth2.0 根据token获取用户信息(4)...
  • (贪心) LeetCode 45. 跳跃游戏 II
  • (学习日记)2024.01.09
  • (一)Thymeleaf用法——Thymeleaf简介
  • (原创)boost.property_tree解析xml的帮助类以及中文解析问题的解决
  • (原創) 是否该学PetShop将Model和BLL分开? (.NET) (N-Tier) (PetShop) (OO)
  • (转)C#调用WebService 基础
  • ***汇编语言 实验16 编写包含多个功能子程序的中断例程