我正在通过编写游戏来学习Android并且遇到图形API问题。
我想将图像绘制为Path的形状,然后在Path上添加边框。我能够使用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
我是否想念任何事情才能让它发挥作用?
答案 0 :(得分:1)
尝试在drawBitmap之后使用canvas.drawPath(path, paint)
您可能必须在剪辑前放置canvas.save
并在drawPath之前插入canvas.restore
(我不确定笔划是否发生在路径线的内部或外部)。