[android-developers] Re: merge images

2012-08-30 Thread Chandra Sekhar Nayak
I hope the below link will help you. http://androidattop.blogspot.com/ On Tuesday, 15 September 2009 12:11:35 UTC+5:30, chan wrote: can you give some sample codes for merge several images into a one single image.. Thank you advance -- You received this message because you are subscribed

[android-developers] Re: merge images

2009-09-30 Thread Warrick
This code reads a number of images from files and merges them into a single image. The merged image is a single column, i.e. each image is appended to the merged image below the preceding image. So you'll see as the source bitmaps are gleaned from the files a height calculation is done. The

[android-developers] Re: merge images

2009-09-30 Thread Isuru Samaraweera
Here is another way public static String appendImages(ArrayListBitmap bitmaplist) { //assume bitmaplist has atleast 1 bitmap Bitmap tmpbitmap = bitmaplist.get(0); int w = tmpbitmap.getWidth(); int h = tmpbitmap.getHeight(); Bitmap new_image =