将BitmapDrawable转换为位图

时间:2014-12-04 17:47:17

标签: android pdf bitmap bitmapdrawable

在我的项目中,一个位图充满了文本和另一个位图,将文本添加到位图的方法返回一个BitmapDrawable。

我想将此BitmapDrawable保存为pdf文件,因此我可以通过电子邮件发送原始位图,并添加文本和其他图像。

为此,我需要一个常规的Bitmap而不是BitmapDrawable。 我似乎无法找到任何答案,因为我没有在drawable文件夹中引用drawable,我只能使用BitmapDrawable。

有关于此的任何想法吗?

1 个答案:

答案 0 :(得分:5)

BitmapDrawables支持位图的getter。

Bitmap bitmap = bitmapDrawable.getBitmap();