Bitmap bitmap = Bitmap.createBitmap(resource, i*100, j*100, 100, 100);分割图片
但图片过大会报错 有什么好方法 或其他方法吗
------解决方案--------------------
试试
public final void cutImage(Canvas g, Paint paint, Bitmap imgBit, int x,
int y, int w, int h, int line, int row) {
g.clipRect(x, y, x + w, h + y);
g.drawBitmap(imgBit, x – line * w, y – row * h, paint);
g.restore();
}