Code im using:
Bitmap cropImg = Bitmap.createBitmap(bitmap, cropW, cropH, newWidth, newHeight);
Not a java programmer but as i understand it everything is from top left.
my dimensions are
cropW: '696',
cropH: '72',
newWidth: '1200',
newHeight:'1800',
But i end up with the top left of the image..
What i really would like would be like give it 4 points and it takes out the image in the middle.
Im using this as a plugin with Cordova/Phonegap if it makes a difference.
Any help or explanation would be helpful.
Thanks