Как сделать фоновое изображение моего профиля более размытым
Я пытаюсь сделать изображение более размытым. Как я могу сделать это более темное размытие?
Я делаю свое изображение размытым, работаю нормально, но оно не темнее. Кроме того, я использую сетевое представление изображений, мои изображения динамически поступают из сервисного API. Как я могу сделать мои изображения темнее размытия.
Заранее спасибо.
Я использую приведенный ниже код.
public static Bitmap blur(Context ctx, Bitmap image) {
int width = Math.round(image.getWidth() * BITMAP_SCALE);
int height = Math.round(image.getHeight() * BITMAP_SCALE);
Bitmap inputBitmap = Bitmap.createScaledBitmap(image, width, height, false);
Bitmap outputBitmap = Bitmap.createBitmap(inputBitmap);
RenderScript rs = RenderScript.create(ctx);
ScriptIntrinsicBlur theIntrinsic = ScriptIntrinsicBlur.create(rs, Element.U8_4(rs));
Allocation tmpIn = Allocation.createFromBitmap(rs, inputBitmap);
Allocation tmpOut = Allocation.createFromBitmap(rs, outputBitmap);
theIntrinsic.setRadius(BLUR_RADIUS);
theIntrinsic.setInput(tmpIn);
theIntrinsic.forEach(tmpOut);
tmpOut.copyTo(outputBitmap);
return outputBitmap;
}
1 ответ
Решение
Ты можешь использовать setColorFilter
imageView =(ImageView) findViewById(R.id.image_view) ;
imageView.getDrawable().setColorFilter(0x76ffffff, PorterDuff.Mode.MULTIPLY );
средний черный цвет 0xff555555
Проверьте мой ответ здесь
или вы можете поработать с этим проектом GitHub https://github.com/wasabeef/Blurry
Blurry.with(context)
.radius(10)
.sampling(8)
.color(Color.argb(66, 255, 255, 0))
.async()
.onto(rootView);