gpt4 book ai didi

android - 在位图上画一个圆

转载 作者:搜寻专家 更新时间:2023-11-01 08:05:11 24 4
gpt4 key购买 nike

我在这里搜索了很多关于使用 Canvas 在位图上绘制圆圈的答案。但是,我在代码中遇到了一些错误,应用程序无一异常(exception)地停止了。

谁能帮帮我?它适用于我创建一个空白位图并在其上绘制一个圆圈。任何帮助将不胜感激!

Bitmap bmp = BitmapFactory.decodeResource(getResources(), R.drawable.main);

Paint paint = new Paint();
//paint.setAntiAlias(true);
paint.setColor(Color.BLUE);

Canvas canvas = new Canvas(bmp);
canvas.drawCircle(50, 50, 10, paint);

ImageView imageView = (ImageView)findViewById(R.id.imageView1);
//imageView.setAdjustViewBounds(true);
imageView.setImageBitmap(bmp);

最佳答案

在某处读到资源位图是不可变的。尝试...

bmp = bmp.copy(bmp.getConfig(), true);

关于android - 在位图上画一个圆,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15273513/

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