gpt4 book ai didi

android - 如何从 VectorDrawable 获取位图

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:56:26 37 4
gpt4 key购买 nike

Pie

我仍在尝试解决自几天前以来遇到的问题,但我仍未找到解决方案。但是,我正在一步步到达那里。现在我遇到了另一个障碍。

我正在尝试让 Bitmap.getpixel(int x, int y) 返回用户使用 OnTouchListener 触摸的内容的 Color >。馅饼是一个 VectorDrawable 资源,vectordrawable.xml 我还不需要对像素数据做任何事情,我只需要测试它。所以我制作了一个 TextView,它将吐出触摸的 Color

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 时,我的应用程序遇到了 fatal error ,给出了“Unfortunately,...”消息并退出。在堆栈跟踪中,我发现了这一点。

java.lang.ClassCastException: android.graphics.drawable.VectorDrawable cannot be cast to android.graphics.drawable.BitmapDrawable
at com.skwear.colorthesaurus.MainActivity$1.onTouch(MainActivity.java:38)

第 38 行就是这一行,

Bitmap bitmap = ((BitmapDrawable)drawable).getBitmap();

我有点关注 this .我究竟做错了什么?是不是因为它是一个VectorDrawable。我该怎么做才能获得 Color?你可以看到我还尝试了 BitmapFactory 来转换 Drawable。难道也是VectorDrawable的API级别的问题,因为它是像API 21一样添加的?

最佳答案

首先,您不能将 VectorDrawable 转换为 BitmapDrawable。他们没有亲子关系。它们都是 Drawable 类的直接子类。

现在,要从可绘制对象中获取位图,您需要从可绘制对象元数据创建一个位图

在单独的方法中可能是这样的,

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;
}

希望对您有所帮助。

关于android - 如何从 VectorDrawable 获取位图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36513854/

37 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com