I\'m fairly new to programming on the android platform. I\'m having some problems massaging an int array to turn it into a Bitmap.
Each element in the int array is a num
How do you learn that your Bitmap has [-1 -1] size? To get size, use:
int w = bm.getWidth(); int h = bm.getHeight();
This is working fine.