标签: android bitmap crop
我需要以编程方式从位图裁剪特定区域,例如此图像上的蓝色区域
我怎么做?
答案 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);