1

canvas.clipPath() を使用して、APP デモのクリッピング アクティビティと同様に、拘束円内にビットマップ イメージを描画しようとしています。問題は、私のコードがエミュレーターでのみ適切にレンダリングされることです。実際の Samsung Galaxy Nexus 4.2 で実行すると、clipPath が長方形のクリッピングのように機能するように見えます。私は完全に困惑しています!新しい Path() を作成し、ビュー ctor でビットマップをデコードします。助言がありますか?

@Override
protected void onDraw(Canvas canvas) {
    Point point = getPoint();
    path.reset();
    canvas.clipPath(path); // makes the clip empty
    path.addCircle(point.x, point.y, getScale() * 140, Path.Direction.CCW);
    canvas.clipPath(path, Region.Op.REPLACE);

    Point scaledSize = new Point((int) (bitmapSize.x * getScale()), (int) (bitmapSize.y * getScale()));
    Point topLeft = new Point((point.x - (scaledSize.x / 2)), (point.y - (scaledSize.y / 2)));
    canvas.drawBitmap(bitmap, null, new Rect(topLeft.x, topLeft.y, topLeft.x + scaledSize.x, topLeft.y + scaledSize.y), paint);
}

ギャラクシー ネクサス ギャラクシーネクサス

エミュレータ

エミュレータ

4

3 に答える 3

4

ClipPath はハードウェア アクセラレーションではサポートされていません

これを使用してハードウェアアクセラレーションを閉じることができます:

setLayerType(View.LAYER_TYPE_SOFTWARE, null);
于 2013-07-09T03:28:16.467 に答える
3

ハードウェア アクセラレーションでは、clipPath はサポートされていません。次のようなものを使用して、クリップされたビットマップを作成できます。

Bitmap clippedBitmap = ... // Create same size bitmap as source
Paint paint = new Paint();
Canvas canvas = new Canvas(clippedBitmap);
paint.setColor(Color.RED);
paint.setStyle(PAint.Style.FILL);
paint.setFilterBitmap(true);
canvas.drawCircle(cx, cy, radius, paint);
paint.setXfermode(new PorterDuffXfermode(Mode.SRC_IN));    
canvas.drawBitmap(sourceBitmap, 0, 0, paint);

これを一度行ってから、ソースの代わりにクリップされたビットマップを描画します

于 2013-06-03T04:28:49.447 に答える
2

ClipPath は、ハードウェア アクセラレーションではサポートされていません。以下のトピック「サポートされていない描画操作」の下のリンクを確認してください。

http://developer.android.com/guide/topics/graphics/hardware-accel.html#drawing-support

以下を参照して、必要に応じて描画円のパラメーターを変更できます。

public class MainActivity extends Activity
{
@Override
protected void onCreate(Bundle savedInstanceState) {
    // TODO Auto-generated method stub
    super.onCreate(savedInstanceState);
    DrawingView dv = new DrawingView(this);
    dv.setBackgroundColor(Color.RED);
    setContentView(dv);
}

class DrawingView extends View{
Bitmap bitmap;


 public DrawingView(Context context)
 {
 super(context);
 bitmap = BitmapFactory.decodeResource(context.getResources(), R.drawable.sqaure);   
}


@Override
public void onDraw(Canvas canvas)
{
 Paint paint = new Paint();
 //paint.setStyle(Paint.Style.FILL);
 // paint.setColor(Color.CYAN);
 canvas.drawBitmap(getclip(), 0, 0, paint);//originally x and y is o and o .

 } 
 public Bitmap getclip()
 {
Bitmap output = Bitmap.createBitmap(bitmap.getWidth(),
        bitmap.getHeight(), Config.ARGB_8888);
Canvas canvas = new Canvas(output);
final int color = 0xff424242;
final Paint paint = new Paint();
final Rect rect = new Rect(0, 0, bitmap.getWidth(),
        bitmap.getHeight());
paint.setColor(Color.RED);
paint.setStyle(Paint.Style.FILL);
paint.setAntiAlias(true);
canvas.drawARGB(0, 0, 0, 0);
//paint.setColor(color);
canvas.drawCircle(bitmap.getWidth() / 2-40,
        bitmap.getHeight() / 2, bitmap.getWidth() / 2-40, paint);
    // change the parameters accordin to your needs.
paint.setXfermode(new PorterDuffXfermode(Mode.SRC_IN));
canvas.drawBitmap(bitmap, rect, rect, paint);
return output;
    }
  } 
}

ここに画像の説明を入力

于 2013-06-03T05:35:36.170 に答える