Is there a way to look for the implementation/source code of this method? It's in API need this to compare two images because it keeps overwriting the original image and after several times of converting the imageview to a bitmap, the image doesn't look very nice anymore.
http://developer.android.com/reference/android/graphics/Bitmap.html#sameAs(android.graphics.Bitmap)
I am doing this method to create a bitmap from the image and setting it again as an imageview to let the user edit his picture.
public static Bitmap getBitmap(ImageView imageView) {
BitmapDrawable mDrawable = (BitmapDrawable) imageView.getDrawable();
Bitmap b = mDrawable.getBitmap();
return b;
}
However, after several times of saving and retrieving it from the database to edit it, the image turns from this: 
to this:

and then finally this:

So i need a way of detecting whether the image hasn't been changed for me not to resave the byte array of this bitmap to the database.