Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Convert BitmapDrawable to Bitmap

In my project a bitmap gets filled with text and another bitmap, the method to add the text to the bitmap returns a BitmapDrawable.

I want to save this BitmapDrawable as a pdf file, so I can email the original bitmap, with text and other image(s) added.

For this, I'll need a regular Bitmap instead of a BitmapDrawable. I can't seem to find any answers on this, because I don't have a reference to a drawable in a drawable folder, I just have a BitmapDrawable to work with.

Any ideas on this?

like image 870
TomCB Avatar asked Sep 12 '26 13:09

TomCB


1 Answers

BitmapDrawables support a getter for the bitmap.

Bitmap bitmap = bitmapDrawable.getBitmap();
like image 66
Jay Soyer Avatar answered Sep 14 '26 15:09

Jay Soyer



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!