Questions tagged [bitmapeffect]

17 questions
30
votes
1 answer

Outer glow effect to border

How to provide the outer glow effect to border?
Ponraja
  • 570
  • 2
  • 6
  • 17
8
votes
2 answers

OuterGlowBitmapEffect Alternative Without BitmapEffects

What is a good alternative to OuterGlowBitmapEffect? Preferably one that can be used in a theme/style and one that can be used without BitmapEffects.
akshaykarthik
  • 1,055
  • 2
  • 13
  • 30
5
votes
1 answer

WPF - Programmatic Binding on a BitmapEffect

I would like to be able to programmatically bind some data to the dependency properties on a BitmapEffect. With a FrameworkElement like TextBlock there is a SetBinding method where you can programmatically do these bindings…
viggity
  • 15,039
  • 7
  • 88
  • 96
5
votes
1 answer

Using EffectFactory class on bitmap - Android

I want to use EffectFactory.EFFECT_LOMOISH in my android application. I want to apply this effect on my bitmap but don't know how to do it. I referred both package-summery and EffectFactory links, btu couldn't get much idea. Can anybody guide me to…
Zankhna
  • 4,570
  • 9
  • 62
  • 103
3
votes
2 answers

How would I write an HLSL bevel shader for Silverlight?

I know that Silverlight doesn't directly support the WPF bitmap effects, but I also know that Silverlight 3 supports HLSL shaders. Would it be relatively simple to write a bevel effect, ilke the one in WPF, and if so, can somebody recommend a good…
Mike Pateras
  • 14,715
  • 30
  • 97
  • 137
2
votes
2 answers

Use WPF object to 'punch' hole in another?

I've got an ellipse which is just a circle. My problem is I want to cut out a circle-shaped hole from the middle of the bigger circle and nothing seems to work. I've tried opacity masks and those did not work whatsoever. To further complicate…
Eric Smith
  • 2,329
  • 2
  • 23
  • 30
2
votes
2 answers

Image Processing and Effects in ActionScript-3

I want to implement various effects like Sepia, GrayScale, Posterization etc. on BitmapData in ActionScript-3. How to do this and What is most efficient way to do this ? Thanks in advance!!
DexTer
  • 2,043
  • 1
  • 22
  • 45
1
vote
0 answers

How to add a Effect to a DrawingGroup in WPF in Net 4

As BitmapEffects are obsolete, how can I add a Effect to a DrawingGroup in WPF4?
user1237393
  • 137
  • 9
1
vote
1 answer

Restrict the area that a WPF shader effect gets applied to

How can I restrict the area that a WPF shader effect gets applied to, in a similar manner to the way the obsolete BitmapEffectInput.AreaToApplyEffect used to work for BitmapEffects? Is there an equivalent property for shader effects, or do I have to…
luvieere
  • 37,065
  • 18
  • 127
  • 179
1
vote
2 answers

Is there a way to write a BitmapEffect in 100% Managed Code?

Is there a way to write a BitmapEffect in 100% Managed Code? I know that it would run a lot slower than using unmanaged code, but I'd like to write a BitmapEffect but its been a long time since I've done any C++ programing, plus the application…
Bob Loblaw
0
votes
1 answer

Bitmap Effect not applying to grid border

I know I know I shouldn't do this but I am so new to WPF and BitmapEffects is less daunting than Effects. SO - I have added a border with bitmapeffects to my window and - no bitmap effects. The border is there but not effects are applying. Any…
Matthew
  • 67
  • 7
0
votes
1 answer

How can I still use the OuterGlowBitmapEffect in WPF4.0? Or if there is any user-made alternatives?

I need an "outer glow" effect in my TextBlock, I saw OuterGlowBitmapEffect but it does not work in WPF4.0 anymore. DropshadowEffect and BlurEffect just don't work exactly like OuterGlowBitmapEffect. I want to ask whether there is a way to use that…
user11806540
0
votes
1 answer

Using BevelBitmapEffect on WPF Path

I am trying to add a BevelBitmapEffect on my existing Path object:
abramlimpin
  • 5,027
  • 11
  • 58
  • 97
0
votes
1 answer

How to programmatically add and remove bitmap effect storyboard to ContentControl

I have the following behavior which is unfinished. Please note that TransitionElement is basically a ContentControl. I would like to create two storyboards that use BlurBitmapEffect to blur and unblur the control. If the ContentControl Enabled…
Hank
  • 2,456
  • 3
  • 35
  • 83
0
votes
3 answers

How to change BitmapEffect in custom WPF control via C# code

I have a custom control type like: ... and Grid.BitmapEffect property. How can I change BitmapEffetc in this Control (Grid) via C# code (e.g. on event)? Code sample - part of custom control: [...]
Kamilos
  • 795
  • 2
  • 10
  • 25
1
2