我正在尝试在路径上绘制图像(这是一个封闭的不规则形状)。我使用过 PorterDuffXfermode 。我的目标是使用 EmbossMaskFilter 并在最终图像形状输出上创建浮雕效果。请参阅下面的代码。然而,即使我画出的图片看起来也很平坦。
piecePicture = Bitmap.createBitmap(200, 200,Bitmap.Config.ARGB_8888);
MaskFilter mEmboss = new EmbossMaskFilter(new float[] { 1, 1, 1 }, 0.4f, 6, 3.5f);
Canvas gfx = new Canvas(piecePicture);
Paint whitePaint = new Paint(Paint.ANTI_ALIAS_FLAG);
whitePaint.setColor(Color.WHITE);
whitePaint.setStyle(Paint.Style.FILL_AND_STROKE);
whitePaint.setStrokeWidth(1);
// shape image has to take
mPath.addRect(10, 10, 195, 195, Direction.CCW);
gfx.drawPath(mPath, whitePaint);
Paint paint = new Paint();
paint.setXfermode(new PorterDuffXfermode(android.graphics.PorterDuff.Mode.SRC_IN));
paint.setMaskFilter(mEmboss);
// draw the image on path viewBgrnd is the bitmap
gfx.drawBitmap(viewBgrnd, 10,10, paint);
谢谢
答案 0 :(得分:0)
使用PorterDuffXfermode绘制图像后。 必须使用带有浮雕滤镜的Paint对象在画布上重绘piecePicture。