当前位置: 代码迷 >> Android >> 图片分割解决办法
  详细解决方案

图片分割解决办法

热度:100   发布时间:2016-05-01 21:29:37.0
图片分割
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();
}
  相关解决方案