我看了很多类似的问题,虽然我没有找到正确的答案我的查询。
我有一个drawable,在shape.xml中定义
<?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle" > <solid android:color="@color/bg_color" /> </shape>
为了执行一些操作,我想把它转换成Bitmap对象,但BitmapFactory.decodeResource()返回null。
这是我如何做的:
Bitmap bmp = BitmapFactory.decodeResource(getResources(),R.drawable.shape);
我究竟做错了什么? BitmapFactory.decodeResource()是否适用于xml定义的drawable?
由于您要加载Drawable而不是位图,请使用以下命令:
原文链接:https://www.f2er.com/xml/293219.htmlDrawable d = getResources().getDrawable(...);
把它变成一个位图:
public static Bitmap drawableToBitmap (Drawable drawable) { if (drawable instanceof BitmapDrawable) { return ((BitmapDrawable)drawable).getBitmap(); } Bitmap bitmap = Bitmap.createBitmap(drawable.getIntrinsicWidth(),drawable.getIntrinsicHeight(),Config.ARGB_8888); Canvas canvas = new Canvas(bitmap); drawable.setBounds(0,canvas.getWidth(),canvas.getHeight()); drawable.draw(canvas); return bitmap; }