2

私はこのようなコードを持っています:

// ...

public class MyImageView extends ImageView

    public MyImageView(Context context, String value /* some other params */) {
        super(context);

        // some predefines
    }

    @Override
    protected void onDraw(Canvas canvas) {
        super.onDraw(canvas);

        // some preparations
        try {
            // here I call third party lib like:
            someObj.draw(canvas);

            // HERE I WANT TO CHANGE COLOR OF SOME PIXELS ACCORDING TO THEIR CURRENT COLOR
        } catch (Exception e) {
            e.printStackTrace();
        }

    }
}

UPCASE 文字のコメントの代わりに、サード パーティの lib 描画後にキャンバス上の一部のピクセルの色を現在の色に合わせて変更したいと考えています。ピクセルの色を設定するメソッドを使用できますcanvas.drawPoint(x, y, paint)が、どのようにしてピクセルの色を取得でき(x,y)ますか?

4

1 に答える 1

1

ここに何かがあるかもしれません(テストされていません):

public static Bitmap getBitmap(Canvas canvas) {
    // mBitmap is a private value inside Canvas.
    // time for some dirty reflection:
    try {
        java.lang.reflect.Field field = Canvas.class.getDeclaredField("mBitmap");
        field.setAccessible(true);
        return (Bitmap)field.get(canvas);
    }
    catch (Throwable t) {
        return null;
    }
}

その後、次の方法でピクセルにアクセスできます。

Bitmap map = getBitmap(canvas);
if (map != null) {
    int rgb = map.getPixel(100,100);
    int red = android.graphics.Color.red(rgb);
    ...
}
于 2014-03-19T14:34:08.673 に答える