We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Example code:
Bitmap bitmap = BitmapFactory.decodeResource(resources, R.mipmap.example); BlurConfig.Builder builder = new BlurConfig.Builder(); builder.overlayColor(Color.argb(136, 255, 255, 255)); // semi-transparent white Blur blur = new Blur(this, builder.build()); Bitmap result = blur.execute(bitmap, false);
Expected result:
The resulting bitmap has a semi-transparent white overlay painted on top of it.
Actual result:
The overlay is missing. The BlurEngines ignore the value of BlurConfig#overlayColor.
BlurEngine
BlurConfig#overlayColor
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Example code:
Expected result:
The resulting bitmap has a semi-transparent white overlay painted on top of it.
Actual result:
The overlay is missing. The
BlurEngine
s ignore the value ofBlurConfig#overlayColor
.The text was updated successfully, but these errors were encountered: