1. ホーム
  2. android

[解決済み] AndroidでDrawableの色を変更するには?

2022-02-09 03:22:19

質問

アンドロイドのアプリケーションを作っているのですが、ソース画像から読み込むドローアブルを持っています。 この画像で、すべての白いピクセルを別の色、たとえば青に変換し、結果のDrawableオブジェクトをキャッシュして、後で使用できるようにしたいのです。

例えば、20×20のPNGファイルで、真ん中に白い丸があり、丸の外側はすべて透明だとします。 この白い円を青くし、その結果をキャッシュするには、どのような方法があるでしょうか? そのソース画像を使用して複数の新しいDrawable(例えば青、赤、緑、オレンジなど)を作成したい場合、答えは変わるのでしょうか?

何らかの方法でColorMatrixを使いたいのだろうと思いますが、方法がわかりません。

どのように解決するのですか?

私は、アクティビティから引用した以下のコードでこれを行うことができました(レイアウトは、ImageViewを含むだけの非常にシンプルなもので、ここには掲載されていません)。

private static final int[] FROM_COLOR = new int[]{49, 179, 110};
private static final int THRESHOLD = 3;

public void onCreate(Bundle savedInstanceState)
{
    super.onCreate(savedInstanceState);
    setContentView(R.layout.test_colors);

    ImageView iv = (ImageView) findViewById(R.id.img);
    Drawable d = getResources().getDrawable(RES);
    iv.setImageDrawable(adjust(d));
}

private Drawable adjust(Drawable d)
{
    int to = Color.RED;

    //Need to copy to ensure that the bitmap is mutable.
    Bitmap src = ((BitmapDrawable) d).getBitmap();
    Bitmap bitmap = src.copy(Bitmap.Config.ARGB_8888, true);
    for(int x = 0;x < bitmap.getWidth();x++)
        for(int y = 0;y < bitmap.getHeight();y++)
            if(match(bitmap.getPixel(x, y))) 
                bitmap.setPixel(x, y, to);

    return new BitmapDrawable(bitmap);
}

private boolean match(int pixel)
{
    //There may be a better way to match, but I wanted to do a comparison ignoring
    //transparency, so I couldn't just do a direct integer compare.
    return Math.abs(Color.red(pixel) - FROM_COLOR[0]) < THRESHOLD &&
        Math.abs(Color.green(pixel) - FROM_COLOR[1]) < THRESHOLD &&
        Math.abs(Color.blue(pixel) - FROM_COLOR[2]) < THRESHOLD;
}