如何从 VectorDrawable 获取位图
How to get a Bitmap from VectorDrawable
我仍在尝试解决几天前遇到的问题,但我仍未找到解决方案。但是,我正在一步步到达那里。现在我 运行 进入了另一个障碍。
我试图让 Bitmap.getpixel(int x, int y)
到 return 用户使用 OnTouchListener
触摸的 Color
。馅饼是 VectorDrawable
资源,vectordrawable.xml
我还不需要对像素数据做任何事情,我只需要测试它。所以我做了一个 TextView
会吐出 Color
touched.
public class MainActivity extends AppCompatActivity {
ImageView imageView;
TextView textView;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
imageView = (ImageView) findViewById(R.id.imageView);
textView = (TextView) findViewById(R.id.textView);
imageView.setOnTouchListener(imageViewOnTouchListener);
}
View.OnTouchListener imageViewOnTouchListener = new View.OnTouchListener() {
@Override
public boolean onTouch(View view, MotionEvent event) {
Drawable drawable = ((ImageView)view).getDrawable();
//Bitmap bitmap = BitmapFactory.decodeResource(imageView.getResources(),R.drawable.vectordrawable);
Bitmap bitmap = ((BitmapDrawable)drawable).getBitmap();
int x = (int)event.getX();
int y = (int)event.getY();
int pixel = bitmap.getPixel(x,y);
textView.setText("touched color: " + "#" + Integer.toHexString(pixel));
return true;
}
};
}
但是我的应用程序在我触摸 ImageView
时遇到致命错误,给出 "Unfortunately,..." 消息并退出。在堆栈跟踪中,我找到了这个。
java.lang.ClassCastException: android.graphics.drawable.VectorDrawable cannot be cast to android.graphics.drawable.BitmapDrawable
at com.skwear.colorthesaurus.MainActivity.onTouch(MainActivity.java:38)
第38行就是这一行,
Bitmap bitmap = ((BitmapDrawable)drawable).getBitmap();
我有点关注 this。我究竟做错了什么?是不是因为是VectorDrawable
。我该怎么做才能获得 Color
?你可以看到我也尝试过 BitmapFactory
来投射 Drawable
。 VectorDrawable
的 API 级别是否也有问题,因为它是像 API 21 这样添加的?
首先,你不能将VectorDrawable
转换为BitmapDrawable
。他们没有亲子关系。他们都是 Drawable
class.
的直接子 classes
现在,要从可绘制对象中获取位图,您需要从可绘制对象元数据中创建一个 Bitmap
。
可能在单独的方法中是这样的,
try {
Bitmap bitmap;
bitmap = Bitmap.createBitmap(drawable.getIntrinsicWidth(), drawable.getIntrinsicHeight(), Bitmap.Config.ARGB_8888);
Canvas canvas = new Canvas(bitmap);
drawable.setBounds(0, 0, canvas.getWidth(), canvas.getHeight());
drawable.draw(canvas);
return bitmap;
} catch (OutOfMemoryError e) {
// Handle the error
return null;
}
希望对您有所帮助。
使用 AndroidX 支持库中的 Drawable.toBitmap()
。 VectorDrawable
是 Drawable
的 child。
我仍在尝试解决几天前遇到的问题,但我仍未找到解决方案。但是,我正在一步步到达那里。现在我 运行 进入了另一个障碍。
我试图让 Bitmap.getpixel(int x, int y)
到 return 用户使用 OnTouchListener
触摸的 Color
。馅饼是 VectorDrawable
资源,vectordrawable.xml
我还不需要对像素数据做任何事情,我只需要测试它。所以我做了一个 TextView
会吐出 Color
touched.
public class MainActivity extends AppCompatActivity {
ImageView imageView;
TextView textView;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
imageView = (ImageView) findViewById(R.id.imageView);
textView = (TextView) findViewById(R.id.textView);
imageView.setOnTouchListener(imageViewOnTouchListener);
}
View.OnTouchListener imageViewOnTouchListener = new View.OnTouchListener() {
@Override
public boolean onTouch(View view, MotionEvent event) {
Drawable drawable = ((ImageView)view).getDrawable();
//Bitmap bitmap = BitmapFactory.decodeResource(imageView.getResources(),R.drawable.vectordrawable);
Bitmap bitmap = ((BitmapDrawable)drawable).getBitmap();
int x = (int)event.getX();
int y = (int)event.getY();
int pixel = bitmap.getPixel(x,y);
textView.setText("touched color: " + "#" + Integer.toHexString(pixel));
return true;
}
};
}
但是我的应用程序在我触摸 ImageView
时遇到致命错误,给出 "Unfortunately,..." 消息并退出。在堆栈跟踪中,我找到了这个。
java.lang.ClassCastException: android.graphics.drawable.VectorDrawable cannot be cast to android.graphics.drawable.BitmapDrawable
at com.skwear.colorthesaurus.MainActivity.onTouch(MainActivity.java:38)
第38行就是这一行,
Bitmap bitmap = ((BitmapDrawable)drawable).getBitmap();
我有点关注 this。我究竟做错了什么?是不是因为是VectorDrawable
。我该怎么做才能获得 Color
?你可以看到我也尝试过 BitmapFactory
来投射 Drawable
。 VectorDrawable
的 API 级别是否也有问题,因为它是像 API 21 这样添加的?
首先,你不能将VectorDrawable
转换为BitmapDrawable
。他们没有亲子关系。他们都是 Drawable
class.
现在,要从可绘制对象中获取位图,您需要从可绘制对象元数据中创建一个 Bitmap
。
可能在单独的方法中是这样的,
try {
Bitmap bitmap;
bitmap = Bitmap.createBitmap(drawable.getIntrinsicWidth(), drawable.getIntrinsicHeight(), Bitmap.Config.ARGB_8888);
Canvas canvas = new Canvas(bitmap);
drawable.setBounds(0, 0, canvas.getWidth(), canvas.getHeight());
drawable.draw(canvas);
return bitmap;
} catch (OutOfMemoryError e) {
// Handle the error
return null;
}
希望对您有所帮助。
使用 AndroidX 支持库中的 Drawable.toBitmap()
。 VectorDrawable
是 Drawable
的 child。