For a private application I manipulate pictures.
In order to test my algorithm I apply it on a picture and try to load the result on the simulator using Canvas class and drawBitmap function.
However nothing happens and it's the original picture which is displayed.
- Code: Select all
Canvas newPicture = new Canvas();
newPicture.drawBitmap(thresholdPixels, 0,calculator.getPictureHeight(), 0, 0, calculator.getPictureHeight(), calculator.getPictureWidth(), false, null);
canvas.draw(newPicture);
canvas.invalidate();
There are no compilations errors.
Moreover, I have a second problem : My screen is in landscape mode but when I try to get picture's width android returns picture's height.
I'm working on 2.0.1 SDK

