Android裁剪位图

时间:2015-09-15 13:50:44

标签: android bitmap crop

我需要以编程方式从位图裁剪特定区域,例如此图像上的蓝色区域enter image description here

我怎么做?

1 个答案:

答案 0 :(得分:2)

就像下面这样:

// x refers to width, y refers to height
//first find startx, starty, endx, endy
Bitmap blueArea = Bitmap.createBitmap(bitmap, startx, starty, endx, endy);