views:

48

answers:

1

Hello guys,

Can anybody have any idea about how to get a small bitmap image from a big bitmap which is the combination of many bitmaps.

Any help will be appreciative.

Thanks a lot.

A: 

Create a small bitmap.

Create a canvas using that bitmap.

Paste a Rect from the original bitmap to the new one.

Yes, this is annoying; no, you can't skip the pointless canvas step, that's how it works here.

Lo'oris
for more info look here: http://stackoverflow.com/questions/2618355/how-to-blit-in-android
Lo'oris