I have a byte[] that stores my image.
Now I want to be able to scale it and store it in another byte[].
I know how to scale Bitmaps, and can convert my from byte[] to Bitmap.
But I cant get the scaled Bitmap back into a byte[].
Blackberries
EncodedImage thumbnail = image.scaleImageToFill(50, 50); does nothing.
Im trying to create a thumbnail of 50x50. doesnt have to be exact. That is stored in a byte[].
How do I resize an image stored in a byte[], and keep it in a new byte[].
byte[] imageTaken;
//Create thumbnail from image taken
EncodedImage image = EncodedImage.createEncodedImage(imageTaken, 0, -1);
image.getBitmap();
EncodedImage thumbnail = image.scaleImageToFill(50, 50);
byte[] thumbArray = thumbnail.getData();
