public int getBitmapSize(Bitmap bitmap){
//19
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT){return bitmap.getAllocationByteCount();
}
//12
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB_MR1){return bitmap.getByteCount();
}
return bitmap.getRowBytes() * bitmap.getHeight();
}