Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
6answers
3k 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 ...
6
votes
1answer
2k 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() { ...
5
votes
1answer
657 views

how convert xps file to image. high quality?

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 ...
5
votes
1answer
781 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 ...
5
votes
1answer
1k 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 ...
4
votes
2answers
374 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 ...
3
votes
2answers
1k 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 ...
2
votes
2answers
112 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, ...
2
votes
1answer
116 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 ...
2
votes
1answer
642 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
408 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 ...
2
votes
0answers
336 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 ...
1
vote
1answer
90 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
234 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 ...
1
vote
0answers
270 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( ...
1
vote
1answer
313 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
276 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
311 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 ...
1
vote
0answers
150 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 ...
1
vote
1answer
427 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. ...
0
votes
0answers
15 views

XAML TreeView to WinForm Image not working correctly

i have a XAML User control wich contain a (complex) TreeView, inside an ElementHost exact setup : VSTO TaskPane / UserControl / ElementHost / WPFUserControl / Grid /TreeView / ... I want to show ...
0
votes
1answer
27 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 ...
0
votes
0answers
90 views

Rendering an image with a custom ShaderEffect into a RenderTargetBitmap not working

I have been trying to render an image with a custom shader effect to a rendertargetbitmap so I can save the output to a file, but no success. The output is like if no shader effect was set on the ...
0
votes
0answers
55 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 ...
0
votes
1answer
104 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 ...
0
votes
1answer
200 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: ...
0
votes
0answers
159 views

Simulate WPF Message Loop

I'd like to simulate the behavior of a root visual's message loop in WPF in code. By "root visual", I mean a topmost visual element that is responsible for handling all of the update calls to Measure, ...
0
votes
1answer
125 views

RenderTargetBitmap hardware accelerated analog

Is there a RenderTargetBitmap hardware accelerated analog in .net 3.5 sp1?
0
votes
1answer
100 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.
0
votes
1answer
298 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); ...
0
votes
1answer
390 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 ...