• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Apps Image Manipulation

otb82

Lurker
Hi,
I would like to save on the disk the result of the merge of 2 pictures:
- a wallpaper
- a transparent png on the top

I have no idea where to start my search.
Thanks for your help.
 
You simply say:

Canvas canvas = new Canvas();
Bitmap result_image = Bitmap.createBitmap( width, height, Config.ARGB_8888 );
canvas.setBitmap( result_image );

then you can draw on canvas ( for drawing a bitmap use drawBitmap method ). When done you can see the result in result_image.

Hope that helps ;)
 
This helped me alot. I have been searching days for a proper solution to my issue and this has put me on the right path. Thanks a lot!
 
Hello ,
Can you point me to some code samples to manipulate pixels , I want to change the Original pixel colors to the desired ones , like R-G etc..

Ulrika
 
Back
Top Bottom