Bitmap Effects
Written by Administrator   
Monday, 24 May 2010
Article Index
Bitmap Effects
DropShadow and glow
Appying to a bitmap

 

Banner

Not only can you apply an effect to a bitmap but to anything that can be rendered. In fact we are not really applying the effect to the bitmap even in this case - we are applying it to the result of rendering the Image control.

To see this in action on a more obvious example of a general render consider blurring the button in the previous example as well as the Image control:

button1.Effect = new BlurEffect();

 

blur2Notice that now the button is blurred as well as the photo

 

You can control the effect in use via various properties which depend on the type of effect in use. For the blur effect there is only the Radius property that you can modify - the bigger the Radius the more the blur. For example.

image1.Effect = new BlurEffect()
{Radius=50};

which produces:

blur3

A bigger blur

 

Notice that the blur really is applied to the rendering of the image control and not the bitmap. You can see that this is the case because the blur "spills out" over the boundary of the image control. If the blur was applied to the bitmap it would be just as blurred but the edges of the image control would be sharp.

Also notice that effects apply to the children of any controls that you apply them to. This also allows you to apply multiple effects. You can apply an effect to a container and then other effects to the children within the container. The overall result is that the container and direct effects are applied to the children.

DropShadow

The only other standard effect provided is the DropShadowEffect and this can be applied to the button say just as easiliy as blur:

button1.Effect = new DropShadowEffect()
 { BlurRadius = 3, ShadowDepth = 10 };

with the result:

 

blur4

You can adjust the way the shadow looks using the BlurRadius, Direction, Color and ShadowDepth properties. The ShadowDepth controls how far away from the object the shadow is, Direction is the direction of displacement, color sets the shadow color and the BlurRadius controls the fuzziness of the shadow.

XAML

Of course you can apply all of these effects using XAML - just follow the usual rules. For example, the drop shadow can be added to the button using:

<Button Content="Button"  etc.. >
<Button.Effect>
  <DropShadowEffect
BlurRadius="3" ShadowDepth="10">
</DropShadowEffect>
 </Button.Effect>
</Button>

You can also animate an effect property in the usual way.

Making a glow

You can also use the DropShadow effect to create an OuterGlow. Simply set the ShadowDepth to 0, BlurRadius to something big that gives you the "thickness" of outer glow and color to the color you want to glow to be.

For example to produce a blue glow:

button1.Effect = 
new DropShadowEffect()
{ BlurRadius = 10,
ShadowDepth =0,
Color=Colors.Blue };

 

glow

There seems to be no obvious way to create a bevel effect without resorting to a custom effect and this is the subject of the next WPF Workings article.

Banner

<ASIN:143022455X>

<ASIN:0596800959>

<ASIN:143022519X>

<ASIN:1430225394>

<ASIN:1430272910>



Last Updated ( Saturday, 22 May 2010 )