Reputation: 622
This is how I make Blur:
await BlurBackround.Blur(value: 7, duration: 10, delay: 0).StartAsync();
Problem is on white elements of image. It is any way to make image more darker before blur or make text letters black border?
Upvotes: 3
Views: 599
Reputation:
Try adding a drop shadow..? It helps to add some contrast between the text and the background. This post shows how to do it in xaml -> post
Upvotes: 2
Reputation: 8039
The common pattern to ensure text visible over the image, is to apply a solid black color layer with 0.2-0.3 Opacity between the text and image components.
Upvotes: 8