1

我正在使用以下方法来更改位图的色调:

public Bitmap changeHue( Bitmap source, double hue ) {

    Bitmap result = Bitmap.createBitmap( screenWidth, screenHeight, source.getConfig() );

    float[] hsv = new float[3];
    for( int x = 0; x < source.getWidth(); x++ ) {
        for( int y = 0; y < source.getHeight(); y++ ) {
            int c = source.getPixel( x, y );
            Color.colorToHSV( c, hsv );
            hsv[0] = (float) ((hsv[0] + 360 * hue) % 360);
            c = (Color.HSVToColor( hsv ) & 0x00ffffff) | (c & 0xff000000);
            result.setPixel( x, y, c );
        }
    }

    return result;
}

它完美地工作并保持位图的亮度。但是,当更改位图大小 800*480 或更高的色调时,此方法非常慢。如何在不损失太多图像质量的情况下对其进行优化?

4

1 回答 1

0

如果你用ImageView一个非常简单的方法包装你的位图:

ImageView circle = new ImageView(this);
circle.setImageBitmap(yourBitmap);
circle.setColorFilter(Color.RED);
于 2020-06-17T19:16:19.730 回答