O otb82 Lurker Aug 11, 2009 #1 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.
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.
L LambergaR Lurker Aug 25, 2009 #2 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
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
D Droid Chris Newbie Jun 14, 2010 #3 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!
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!
U Ulrika Lurker Aug 29, 2011 #4 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
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