I have bitmap 256x256 and I need to copy, for example all from x=128 y=128 to another bitmap (128*128).
I try to use getPixel/setPixel methods, but they are very slow.
Can't you make a canvas and draw the bitmap to that canvas. But use a source rectangle so you only draw the part of the bitmap you like. And then use the canvas to make the new bitmap.