Tagged Questions
The drawingbrush tag has no wiki summary.
2
votes
1answer
88 views
How do I convert from a Brush (e.g. DrawingBrush) to a BitmapSource?
I have a DrawingBrush with some vector graphics. I want to convert it to BitmapSource as an intermediate step to getting it to Bitmap. What's the (best) way to do this?
1
vote
1answer
97 views
DrawingBrush with RadialGradientBrush Drawing can only display last one
there is a problem. I build a DrawingBrush whose Drawing is a DrawingGroup and the group children can changed. So i build it in the behind code. The drawing.Brush is RadialGradientBrush.
And i add 5 ...
1
vote
0answers
105 views
How can I create DrawingBrush from an image (BMP/JPEG/PNG)?
I need to pass DrawingBrush to a method in a third-party DLL which displays an image somewhere in the application. I can't modify this.
I need to create a DrawingBrush from an BMP Image.
I tried ...
1
vote
2answers
734 views
Creating a Canvas Background Dynamically
I currently have a canvas which contains a bunch of sqaures as its children.
These sqaures sit on different lines.
I would like to draw a background for the canvas which draws lines (like a notepad ...
1
vote
1answer
727 views
DrawingBrush Performance
Are there any differences when it comes to performance between the following three border objects?
<Border Grid.Column="0" Grid.ColumnSpan="2" Opacity="1">
<Border.Background>
...
0
votes
1answer
41 views
OpenFrameworks Brush Tool Implementation
I am working on Open Frameworks.
I have made an application that extracts the face of the user from the live feed and projects it on a rectangle of chosen colour. Now I want the user to be able to ...
0
votes
2answers
212 views
WPF TileBrush and DrawingContext.DrawRectangle — relative to upper-left of rectangle?
When using DrawingContext.DrawRectangle with a TileBrush, I noticed that the top-left of the rectangle is not the top-left of the underlying image. This occurs with both a DrawingBrush and an ...
0
votes
1answer
190 views
WPF - Relative transform on brush results in jagged lines
After applying a relative rotate transform (of 45 degrees) on a brush in WPF, I am left with extremely jagged lines. Has anyone else experienced this? Did you find a solution?
0
votes
1answer
554 views
WPF button with graphics for both the button's background and content
I am skinning my app and want have a generic button graphic for all buttons, and then each button have unique content. I've created a DrawingBrush for the generic button graphic and applied it the ...