I'm messing around with the Windows Phone 7 sdk and I'm trying to make the screen look like an old fashion digital display. Right now I'm trying to figure out how to make the text "glow" like one of those cool digital clocks. This is the sort of thing I'd assume you would look in to using shaders for, but it seems that shaders are disabled for use on the Windows Phone 7 OS. Any ideas? To be more specific, I want the text to look as though it is a light source and have the color "bleed" out slightly from the actual font.
|
|
I'd say its a choice between using an image as a font or blurring with WriteableBitmap. Using a pre-made font image allows you to make the letters a complex as you want and should perform well. SpriteFont2 is convenient as it can generate the SpriteSheet with effects like glow, stroke, shadow and export an xml file containing the letter positions. Add the generated png, and xml files to your solution and change the Build Action to content also check you have referenced System.Xml.Linq. The following class can then be used.
Usage
If you want to blur see a BoxBlur implementation here or use WriteableBitmapEx.Convolute. |
|||
|
|
|
You should make a copy of the TextBlock you want to give the glow to. Bind the text property of the new item to the original item's text property (using ElementName binding). Do the same for location / height / width etc or any other property that you feel that will change on the original item. Set a transparency on the new item as well as a Blur Effect. This will give you a cool glow effect you want. |
|||||||
|
|
Several ways Using a Border for a Glow Effect in Silverlight 3 Creating a Glowing effect in Silverlight I believe all of them can be used in WP7 as well. |
|||
|