gpt4 book ai didi

android - 在带边框的 Canvas 中的当前剪辑上绘制位图(画图)

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:19:29 30 4
gpt4 key购买 nike

我正在通过编写游戏来学习 Android,但遇到了图形 API 方面的问题。

我想将图像绘制成路径的形状,然后在路径上添加边框。我能够使用 Path 剪辑图像,但找不到在其上添加边框的方法。我认为这很简单,因为 API 支持 Canvas.draw* 方法上的 Paint 对象。

更新

在原始问题中,我的路径包含两个矩形,@christopher-souvey 回答正确。但是,在处理添加一个 clipPath() 方法时我遇到了另一个问题。

我通过在 Path 中添加一个圆来更新以前的代码。这是我的新代码:

Bitmap srcImage = BitmapFactory.decodeStream(getAssets().open("panda.jpg"));
Bitmap bitmapResult = Bitmap.createBitmap(srcImage.getWidth(), srcImage.getHeight(), Bitmap.Config.ARGB_8888);
Path path = new Path();

// This is my border
Paint paint = new Paint();
paint.setStyle(Style.STROKE);
paint.setColor(Color.RED);
paint.setStrokeWidth(2);
paint.setAntiAlias(true);

Canvas canvas = new Canvas(bitmapResult);

// Overlay two rectangles
path.addRect(10, 10, 70, 70, Path.Direction.CCW);
path.addRect(40, 40, 120, 120, Path.Direction.CCW);
canvas.drawPath(path , paint);
canvas.clipPath(path, Region.Op.INTERSECT);

path.reset();
path.addCircle(40, 80, 20, Path.Direction.CCW);
canvas.drawPath(path , paint);
canvas.clipPath(path, Region.Op.DIFFERENCE);

// The image is drawn within the area of two rectangles and a circle
// Although I suppose that puting Paint object into drawBitmap() method will add a red border on result image but it doesn't work
canvas.drawBitmap(srcImage, 0, 0, paint);

((ImageView)this.findViewById(R.id.imageView1)).setImageBitmap(bitmapResult);

这是我的代码的结果:http://i.stack.imgur.com/8j2Kg.png

这就是我所期望的:http://i.stack.imgur.com/iKhIr.png

我是否遗漏了任何让它发挥作用的东西?

最佳答案

尝试在 drawBitmap 之后使用 canvas.drawPath(path, paint)您可能必须在剪辑之前放入 canvas.save 并在 drawPath 之前放入 canvas.restore(我不确定中风是发生在路径线的内部还是外部).

关于android - 在带边框的 Canvas 中的当前剪辑上绘制位图(画图),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6314739/

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