前言
Android中对Bitmap的操作很多,比如缩放,裁剪,旋转等,这里简单记录一下,方便自己查阅。
PS: 参考别人内容修改,部分内容有改动和自己的理解。
正文
Matrix
对Bitmap的操作大都需要Matrix支持,Matrix 通过矩阵来处理位图,计算出各个像素点的位置,从而把bitmap显示出来。
Matrix3*3的矩阵结构
MSCALE_X MSKEW_X MTRANS_X
MSKEW_Y MSCALE_Y MTRANS_Y
MPERSP_0 MPERSP_1 MPERSP_2
大概对应的意思
缩放X 偏移X 平移X
偏移Y 缩放Y 平移Y
透视0 透视1 透视2
Matrix的操作有set,pre和post方法,例如缩放setScale(),preScale(),postScale()
- setScale(sx,sy),首先会将该Matrix设置为对角矩阵,即相当于调用reset()方法,然后在设置该Matrix的MSCALE_X和MSCALE_Y直接设置为sx,sy的值
- preScale(sx,sy),不会重置Matrix,而是直接与Matrix之前的MSCALE_X和MSCALE_Y值结合起来(相乘),M' = M * S(sx, sy)。
- postScale(sx,sy),不会重置Matrix,而是直接与Matrix之前的MSCALE_X和MSCALE_Y值结合起来(相乘),M' = S(sx, sy) * M。
缩放
PS: 这里暂时不判断source是否为null,下同
//传入指定高宽
public Bitmap scaleBitmap(Bitmap source, int width, int height) {
int bitmapWidth = source.getWidth();
int bitmapHeight = source.getHeight();
float scaleWith = ((float) width) / bitmapWidth;
float scaleHeight = ((float) height) / bitmapHeight;
Matrix matrix = new Matrix();
matrix.postScale(scaleWith, scaleHeight);
return Bitmap.createBitmap(source, 0, 0, bitmapWidth, bitmapHeight, matrix, true);
}
或者
//传入缩放比
private Bitmap scaleBitmap2(Bitmap source, float scale) {
int bitmapWidth = source.getWidth();
int bitmapHeight = source.getHeight();
Matrix matrix = new Matrix();
matrix.postScale(scale, scale);
return Bitmap.createBitmap(source, 0, 0, bitmapWidth, bitmapHeight, matrix, true);
}
裁剪
/**
* @param source source
* @param x 起始裁剪坐标x
* @param y 起始裁剪坐标y
* @param width 裁剪宽度
* @param height 裁剪高度或叫长度
*/
private Bitmap cropBitmap(Bitmap source, int x, int y, int width, int height) {
if (width <= 0 || height <= 0) {
return Bitmap.createBitmap(source, 0, 0, 1, 1);
}
return Bitmap.createBitmap(source, x, y, width, height);
}
PS: width 和 height不能为0 ,也不能超过source对应的宽高
举个例子
//裁剪bitmap从底部开始裁剪上半部分
cropBitmap(bitmap,0, 0, bitmap.getWidth(), bitmap.getWidth()/2)
//裁剪bitmap从中心位置开始裁剪下半部
cropBitmap(bitmap0, 0, bitmap0.getHeight() / 2, bitmap0.getWidth(), bitmap.getWidth() / 2)
旋转
/**
* @param source source
* @param rotate [0-360]
*/
private Bitmap rotateBitmap(Bitmap source, float rotate) {
int width = source.getWidth();
int height = source.getHeight();
Matrix matrix = new Matrix();
matrix.setRotate(rotate);
return Bitmap.createBitmap(source, 0, 0, width, height, matrix, true);
}
拼接
/**
* source1+ source2 横[宽]向拼接在一起
*
* @param source1 source1
* @param source2 source2
*/
private Bitmap mosaicBitmap(Bitmap source1, Bitmap source2) {
Bitmap result = Bitmap.createBitmap(source1.getWidth() + source2.getWidth(),
Math.max(source1.getHeight(), source2.getHeight()), Bitmap.Config.ARGB_8888);
Canvas canvas = new Canvas(result);
canvas.drawBitmap(source1, 0, 0, null);
canvas.drawBitmap(source2, source1.getWidth(), 0, null);
return result;
}
或者
/**
* source1+ source2 纵[高]向拼接在一起
*
* @param source1 source1
* @param source2 source2
*/
private Bitmap mosaicBitmap2(Bitmap source1, Bitmap source2) {
Bitmap result = Bitmap.createBitmap(Math.max(source1.getWidth(), source2.getWidth()),
source1.getHeight() + source2.getHeight(), Bitmap.Config.ARGB_8888);
Canvas canvas = new Canvas(result);
canvas.drawBitmap(source1, 0, 0, null);
canvas.drawBitmap(source2, 0, source1.getHeight(), null);
return result;
}
偏移
对于偏移,暂时没搞懂(比如kx和ky的范围以及这个功能的作用),这里只是记录一下代码。
private Bitmap skewBitmap(Bitmap source, float kx, float ky) {
Matrix matrix = new Matrix();
matrix.postSkew(kx, ky);
return Bitmap.createBitmap(source, 0, 0, source.getWidth(), source.getHeight(), matrix, true);
}
参考文章
暂无评论...
随机推荐
毕淑敏:世上千寒,心中永暖
记得当年做医学生实习时,轮到去产科学接生。见那刚生下来的宝宝,一出母体,便放声大哭。倘在别处,听到有人痛嚎,众人必是关切不安,以示慰问。在产科接生室内,哭声便是捷报。若是不闻哭声,助产士便要心焦了。民间流传说,老式的接生婆如果听不到新生儿哭,会立马把孩子头朝下倒拎着,在屁股上猛砸几巴掌,娃儿惊哭出来...
[摘]WindowManger层级记录
前言记录一下Android中WindowManger的层级相关知识。摘抄于此,方便自己查阅。本文摘抄于《Android中WindowManger的层级分析》正文Window 分类应用 Window(ApplicationWindow: 对应一个 Acitivity)子 Window...
Android Studio制作.9.png简单记录
前言项目中.9.png的用处很大,比如显示的title,需要一个背景图,由于文本长度不一,就需要使用这种.9.png图片。下面简单记(摘)录(抄)Android Studio制作.9.png的步骤。PS: 本文对网上大佬的文章进行简单记录而已,只是方便自己。好记性不如烂笔头正文Andro...
[NDK开发]Android JNI 中新增JNI层日志打印
前言在上一篇的基础上《[NDK开发]Android JNI 开发之第一个 JNI 实例》,进行新增log打印正文Android.mk添加LOCAL_LDLIBS := -llog完整代码如下LOCAL_PATH := $(call my-dir)include $(CLEAR...
MARK MANSON:年近30的十条人生经验
马上开始为退休做储蓄,不要以后我有不顾一切的20多岁,但到了30多之后,你应该在财务上有个重大推进。退休计划不是什么可以推迟的东西。当保险、401ks和贷款都落到你肩膀上时,尝试理解那些无聊的玩意儿就变得很重要。好好学一下。从现在开始关注你的健康,不要以后你心理上对年龄的接受力比身体的衰老要滞...
adb shell input的使用
查看当前机器支持adb shell input 的命令如下可以查询C:\Users\Administrator>adb shellroot@android:/ # inputinputusage: input ...input text <string>input k...