The RenderTargetBitmap class, part of the .NET Framework (from version 3.0), converts a System.Windows.Media.Visual object into a bitmap.
0
votes
1answer
38 views
RenderToBitmap trouble in WPF
Actually, I have to print the view from a Viewport3D, obviously, I use a RenderTargetBitmap. The problem is that if the resolution of the rendered image got high, some triangles of my scene don't ...
0
votes
0answers
41 views
TallComponents PDF Rasterizer.NET convertToWPF memory error
I am trying to rasterize pdf's using TallComponents PDF Rasterizer
It works fine going to tiff.. Although I wanted to ConvertToWpf..
I asked this question to them directly although no response..
...
0
votes
1answer
80 views
Why does continual removing and re-adding of a DrawingVisual cause a constant increase in memory usage?
I've got a WPF program that uses a Canvas within a Window, over-ridden to become a Graphics_Canvas, which looks like this:
class Graphics_Canvas : Canvas
{
private List<DrawingVisual> ...
1
vote
0answers
110 views
WPF RenderTargetBitmap Missing Elements
I have a TreeView with small icons displayed in the data template. I'm trying to save the Treeview as a PNG using RenderTargetBitmap.
The image saves correctly on small data sets. However, if the ...
1
vote
0answers
143 views
WPF Memory Leak using RenderTargetBitmap?
I'm a little baffled by a memory leak in my WPF code. I'm rendering some 3D geometry to several RenderTargetBitmaps, then rendering each of those to a large, master RenderTargetBitmap. But when I do ...
0
votes
1answer
200 views
Saving Windows.Media.Drawing with BmpBitmapEncoder black image - how to remove alpha?
I'm using SVG# (http://sharpvectors.codeplex.com/), to batch convert SVG files to other formats. The SVG images being converted are black line drawings with no background. I've little experience with ...
0
votes
1answer
243 views
Snapshot of an WPF Canvas Area using RenderTargetBitmap
I want to create a Snapshot of the Canvas Area in my Application. I'm using Visual brush to get the Snapshot and saving the same using PngEncoder. But the resulting PNG is just a empty black image. ...
0
votes
1answer
124 views
Rendering a WPF canvas as a specificly sized bitmap
I have a WPF Canvas that I want to make a bitmap of.
Specifically, I want to render it actual size on a 300dpi bitmap.
The "actual size" of the objects on the canvas is 10 device independent pixels = ...
0
votes
2answers
503 views
How do I make RenderTargetBitmap and VisualBrush play nice together?
My requirements:
a persistent UserControl that handles logic for a custom image, such as a map or drawing
a set of containers to implement caching on the image during zoom or pan movements
...
5
votes
3answers
722 views
DrawingContext to Bitmap file
I have a DrawingContext (part of a Visual or a DrawingGroup), where I draw a bunch of rectangles and/or 1-bit images on top of each other. Think of it as a masking 1-bit image. I would like to convert ...
0
votes
2answers
196 views
Multiple thread image compositing
I'm using WPF imaging to composite text, 3d graphics and images together using a DrawingVisual. The result is then rendered into a RenderTargetBitmap and saved to disk as a jpeg. All of this happens ...
1
vote
2answers
306 views
wpf RenderTargetBitmap of Viewport3D on a web server (off-screen)
I'm creating a Viewport3D (CurViewport3D) off-screen and fill it with only one plane (for testing purpose).
Via RenderTargetBitmap and BitmapEncoder a MemoryStream of the content of this viewport (as ...
0
votes
1answer
502 views
RenderTargetBitmap renders empty control if not set in a Window (Visiblox chart)
I'm trying to render a Visiblox chart to an image to be able to show hundreds of them at the same time. The chart is generated in code and rendered without showing it.
The problem I'm facing is that ...
3
votes
1answer
355 views
take a screenshot of WPF datagrid with scrollviewer
I'm trying to take a screenshot of a datagrid which has to many rows to be displayed. So there is a scrollviewer.
So when I just put the datagrid into the Render Method of RenderTargetBitmap I ...
3
votes
2answers
277 views
Why are all the coordinates and sizes weird?
This code produced the following image.
DrawingVisual visual = new DrawingVisual();
DrawingContext ctx = visual.RenderOpen();
FormattedText txt = new FormattedText("45", CultureInfo.CurrentCulture, ...
0
votes
2answers
82 views
RenderTargetBitmap does not respect ColumnDefinitions width
I need to create snapshot of Grid with some hidden columns (by setting it's ColumnDefinition.Width = 0).
On screen it looks fine, but the created image has all columns visible (does not respect the ...
1
vote
0answers
155 views
An exception when creating CompatibleRenderTarget from DcRenderTarget
I’m using the .Net Direct2D API in “Windows API Code Pack for .NET” to improve the drawing performance, it always throws the “Exception from HRESULT: 0x88982F80” when creating the ...
1
vote
1answer
342 views
WPF: Drawing canvas content to a bitmap problem
I have a custom control of class DottedCanvas inherited from Canvas, which contains some custom controls of class TreeNode inherited from TextBox. The canvas control has style:
<Style ...
1
vote
1answer
286 views
RenderTargetBitmap save raw data to disk
I have a hight fps stream of RenderTargetBitmap's
I want to save them to disk to process them later, I do not want to encode them to Png, bmp or what ever, I want to save the raw byte buffer.
Is that ...
1
vote
1answer
997 views
RenderTargetBitmap Memory Leak
am trying to render an image with RenderTargetBitmap
every time i create an instance from RenderTargetBitmap to render image the memory increased and when am done the memory never released
and this ...
2
votes
1answer
786 views
Convert WPF Control to BitmapSource
This is kind of a two part question- First, why doesn't this code work?
Canvas canvas = new Canvas { Width = 640, Height = 480 };
System.Windows.Size size = new System.Windows.Size( ...
6
votes
2answers
4k views
How to convert a XPS file to an image in high quality (rather than blurry low resolution)?
I'm trying to convert an XPS with WPF.
The idea is that these images can be loaded with silverlight 4, for this I am using the following code:
// XPS Document
XpsDocument xpsDoc = new ...
2
votes
1answer
226 views
WPF texbox focus when render to offscreen buffer
i am rendering a textbox to an offscreen buffer using RenderTargetBitmap and i want to enter text into this textbox, however, i can't set the textbox focus (using Focus() has no effect - presumably ...
4
votes
2answers
965 views
WPF “Lazy” VisualBrush
I'm trying to implement somesting like an "Lazy" VisualBrush right now. Does anybody have an idea how to to that? Meaning: Something that behaves like an VisualBrush but does not update on every ...
11
votes
1answer
3k views
RenderTargetBitmap and DPI
I don't understand why the DPI parameters on the RenderTargetBitmap are used the way they seem to be used.
Quite often I see code that deals with non-standard DPI settings by adjusting the image size ...
0
votes
1answer
329 views
WPF more efficient Render() Visual/Control to a bitmap
Is there more efficient way to render a visual to a bitmap? I am trying to use shader effects on UI elements and then I want to modify the result in code pixel-by-pixel. Now I use something like this:
...
1
vote
1answer
509 views
WPF RenderTargetBitmap downscaling TextRenderMode to GreyScale
RenderTargetBitmap removes downgrades a RichtextBox's TextRenderingMode to GreyScale. So a captured PNG looks poor quality and doesnt match the WPF control
If I use WINDOWS ALT+PRINT SCREEN, the text ...
1
vote
1answer
233 views
RenderTargetBitmap hardware accelerated analog
Is there a RenderTargetBitmap hardware accelerated analog in .net 3.5 sp1?
0
votes
1answer
234 views
How to merge two RenderTargetBitmap instances?
Hey, guys.
I need to merge two RenderTargetBitmaps of the same size into one.
How would I do that?
thanks.
4
votes
1answer
1k views
How to bitblit from RenderTargetBitmap to WriteableBitmap?
I'm rendering dozens of visuals to the RenderTargetBitmap. Each is rendered in it's own Rect.
What I want to do is to copy one of these Rect areas rendered from RenderTargetBitmap instance into the ...
2
votes
1answer
586 views
Freeze visual brush? or any better idea?
I want to create a branch of thumb pictures for my UI, and I tried to do it in this way:
RenderTargetBitmap renderer = new RenderTargetBitmap(WIDTH, HEIGHT, dpiX, dpiY, PixelFormats.Pbgra32);
...
1
vote
1answer
565 views
Add optional hardware acceleration to RenderTargetBitmap
Is there an alternative to RenderTargetBitmap that can produce an image to be used with Image.Source & is hardware accelerated in .NET 3.5 sp1? Answers for .NET 4.0 are fine but I may not be able ...
1
vote
1answer
669 views
How to use PixelFormats.IndexedX with RenderTargetBitmap?
I am looking to render a DrawingVisual (visual in the example) to a bitmap using RenderTargetBitmap with the view to set this bitmap as the background to a Canvas as below:
var bmp = new ...
0
votes
1answer
674 views
Can't render pixel shader to RenderTargetBitmap! Please help!
I wrote a very simple WPF application to test the ability to render a control that has an associated pixel shader to a RenderTargetBitmap. I then write the bitmap to file (jpeg). The control is ...
1
vote
0answers
234 views
Cannot manipulate panel after RenderTargetBitmap
I've found a perfect storm of conditions that create a situation where my panel is no longer updating properly.
Here is the concept: I have a grid with a viewbox displaying a canvas with lines in ...
2
votes
1answer
746 views
Use WPF in combination with Hardware Rendering instead of RenderTargetBitmap
The WPF application I have build has a Viewport3D containg all kinds of UIElement3D objects. Now I would like to save a high resolution snapshot of a certain view to a file. I have tried ...
1
vote
1answer
756 views
Generating Bitmap of WPF UIElement in ASP.NET
Hey Guys, I'm trying to generate a bitmap off a WPF border. The whole thing sits in a asp.net app (server side of course) running .net 4.0.
The problem is, that the generated image is, well, empty. ...
3
votes
0answers
541 views
Using RenderTargetBitmap with a Viewport3D
I use Viewport3d and display my 3D Elements with inherited UIElement3D classes... Now I want to make different images of my viewport (different views). That means I have to make a new viewport3d at ...
3
votes
2answers
2k views
RenderTargetBitmap + Resource'd VisualBrush = incomplete image
I've found a new twist on the "Visual to RenderTargetBitmap" question!
I'm rendering previews of WPF stuff for a designer. That means I need to take a WPF visual and render it to a bitmap without ...
5
votes
1answer
2k views
ContentControl + RenderTargetBitmap + empty image
Im trying to create some chart images without ever displaying those charts on the screen. I'v been at this for quite a while and tried a lot of different things but nothing seems to work. The code ...
11
votes
6answers
5k views
RenderTargetBitmap and Viewport3D - Quality Issues
I'm wanting to export a 3D scene from a Viewport3D to a bitmap.
The obvious way to do this would be to use RenderTargetBitmap -- however when I this the quality of the exported bitmap is ...
10
votes
1answer
5k views
Create WPF element offscreen and render to bitmap
I can't understand why this doesn't work, or what I need to get it to work.
To repro, create a simple WPF application and replace the main window's constructor thusly:
public MainWindow()
{
...