在 android 上浮雕表示图像的路径

Emboss a Path representing image on android

我正在尝试在路径(闭合的不规则形状)上绘制图像。我用过 PorterDuffXfermode。我的 objective 是使用 EmbossMaskFilter 并在最终图像形状输出上创建浮雕效果。请参阅下面的代码。但是,即使我画了piecePicture,它看起来也是平的。

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

谢谢

使用 PorterDuffXfermode 绘制图像后。 piecePicture 必须使用带有浮雕过滤器的绘画对象在 canvas 上重新绘制。