Slice Bitmap Image In Android

With this simple function you can slice one bitmap image and return array with the sliced images. Just pass in the bitmap you want to slice and number of rows and columns you want it sliced into.


public static ArrayList GetSplittedBitmap(Bitmap picture, int numRow, int numColumn){
ArrayList imgs = new ArrayList();
int pieceHeight = picture.getHeight()/numRow;
int pieceWidth = picture.getWidth()/numColumn;
for(int i=0; i for(int j=0; j imgs.add(Bitmap.createBitmap(picture,j*pieceWidth,i*pieceHeight,pieceWidth,pieceHeight));
}
}
return imgs;
}


Comments

Popular posts from this blog

Squid Access.log Meaning Explained

[Solved] invalid partition table on /dev/sda -- wrong signature 0.

Send SMS Using Gammu Command Line Tool