android 放大镜ShapeDrawable妙用分享

本文介绍如何使用ShapeDrawable和BitmapShader在Android中实现画面局部放大的效果,例如添加放大镜功能。通过设置形状、图片和矩阵变换,可以轻松地在应用程序中加入这种视觉增强特性。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

android上想实现局部放大的效果,比如画面中加个放大镜的效果,发现ShapeDrawable是一个最好的选择。

首先,ShapeDrawable构造的时候可以指定描画的形状,

其次,可以通过shape.getPaint().setShader();指定Shader,shader可以接受一个图片和matrix

所以问题就顺利的解决了:)

具体实现如下:

float scale = 1.2f; 

int cx = 224; 
int cy = 357; 
int r = 200; 

// 指定形状创建一个ShapeDrawable  
ShapeDrawable shape=new ShapeDrawable(new OvalShape()); 
Bitmap bm = BitmapFactory.decodeResource(getResources(),R.drawable.bg1); 
BitmapShader bs = new BitmapShader(bm, Shader.TileMode.CLAMP, Shader.TileMode.CLAMP); 

Matrix m = new Matrix(); 
m.setTranslate(r-cx, r-cy); 
m.postScale(scale, scale); 
bs.setLocalMatrix(m);   // 图形变换可以在这里实现,包括区域指定  

// 为ShapeDrawable设置Shader  
shape.getPaint().setShader(bs); 

// 指定描画目标位置  
shape.setBounds((int)(cx-r*scale),(int)(cy-r*scale),(int)(cx+r*scale),(int)(cy+r*scale)); 
canvas.drawBitmap(bm, 0, 0, null); 
shape.draw(canvas);

 

float scale = 1.2f;

int cx = 224;
int cy = 357;
int r = 200;


// 指定形状创建一个ShapeDrawable
ShapeDrawable shape=new ShapeDrawable(new OvalShape());
Bitmap bm = BitmapFactory.decodeResource(getResources(),R.drawable.bg1);
BitmapShader bs = new BitmapShader(bm, Shader.TileMode.CLAMP, Shader.TileMode.CLAMP);

Matrix m = new Matrix();
m.setTranslate(r-cx, r-cy);
m.postScale(scale, scale);
bs.setLocalMatrix(m); // 图形变换可以在这里实现,包括区域指定

// 为ShapeDrawable设置Shader
shape.getPaint().setShader(bs);

// 指定描画目标位置
shape.setBounds((int)(cx-r*scale),(int)(cy-r*scale),(int)(cx+r*scale),(int)(cy+r*scale));
canvas.drawBitmap(bm, 0, 0, null);
shape.draw(canvas);

转载于:https://www.cnblogs.com/haungzongwang/p/4570927.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值