Android Question Join two bitmaps into one

angel_

Well-Known Member
Licensed User
Longtime User
It is possible to join two bitmaps into one, for example 2 of 600x200 create a single 600x400 bitmap
 

angel_

Well-Known Member
Licensed User
Longtime User
Thank you, sorry I did not explain myself well, I have a large panel from which I take two bitmaps, save them as (jpg, png) and I want to join them and save it again with the same format (jpg, png)

It is relative to this problem:
 
Upvote 0

DonManfred

Expert
Licensed User
Longtime User
It is relative to this problem:
you get an OOM Error?

Best is to create a small project showing the issue and upload it.
 
Upvote 0

Brian Dean

Well-Known Member
Licensed User
Longtime User
It is possible to join two bitmaps into one, for example 2 of 600x200 create a single 600x400 bitmap

Thank you, sorry I did not explain myself well, I have a large panel from which I take two bitmaps, save them as (jpg, png) and I want to join them and save it again with the same format (jpg, png)

I think that Erel is suggesting that you draw the two bitmaps on a panel using B4XCanvas, and then use B4XCanvas.CreateBitmap to create a combined bitmap. If you do not want the panel to be visible then move it off-screen.
 
Upvote 0
Top