I've been searching here about cut bitmaps in android, however I could not make it work for me. I would like to cut off some part of one specific bitmap, but I want to do that starting from center to the bottom of my image.
I already tried to use:
createBitmap(android.graphics.Bitmap source, int x, int y, int width, int height)
However, it always start to cut my image from the TOP, even changing x and y values. I want to cut my bitmap as below blue square.

Someone have any idea about how to cut my bitmap?