I using this method to compress image
if(bitmapObject.compress(Bitmap.CompressFormat.PNG, 100, fOut))
{
...
}
But that image that i get is much small ( in the dimension ) that was before the compress action.
My application need to send the compressed image thru the network - so i want to send as less data as i can ... but i must to keep the original size of the image.
Is there some other way to keep the original bitmap dimension with some compress ?
