Tagged Questions

5
votes
2answers
1k views

Wpf: Why is WriteableBitmap getting slower?

There is a simple MSDN example about WriteableBitmap. It shows how to draw a freehand line with the cursor by just updating one pixel when the mouse is pressed and is moving over a WPF -Image ...
3
votes
1answer
22 views

Anti-Aliased line algorithm with thickness (on WriteableBitmap)

I am looking for a code sample for an anti-aliased line drawing algorithm (e.g. Wu, Bresenham) that handles thickness. This is for use in a cross platform application using WPF/Silverlight's ...
3
votes
1answer
158 views

WriteableBitmap access violation problem

The following code always causes an AccessViolationException in the Fill method when the last pixel (x = 255, y = 255) is accessed. However, if I use a size such as 200x200 it works. Same problem with ...
2
votes
1answer
644 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
1k views

Drawing line using WPF WriteableBitmap.BackBuffer

Do you know any library that provides methods to draw simple shapes (lines and optionally other shapes) using WPF WriteableBitmap and ideally BackBuffer? I know that there is a WriteableBitmapEx ...
2
votes
1answer
441 views

Using gdi+ with InteropBitmap

Is it possible to use WPF's InteropBitmap together with gdi+ ? Any examples ? (I need it for 2D drawing, many small objects; I know how to use gdi+ with WriteableBitmap => (see post by Danko) , but ...
1
vote
1answer
330 views

How To Convert a Bitmap to a Collection of Paths in WPF (in code not XAML)

I have an occupancy grid that has 3 states - Occupied, Free, Unknown. Occupancy grid is a simple 2 dimensional array of states. The grid represents a floor plan where Occupied=Wall, Free=Open Floor, ...
1
vote
2answers
1k views

WPF/WinForms/GDI interop: converting a WriteableBitmap to a System.Drawing.Image?

How can I convert a WPF WriteableBitmap object to a System.Drawing.Image? My WPF client app sends bitmap data to a web service, and the web service needs to construct a System.Drawing.Image on that ...
0
votes
0answers
11 views

WriteableBitmap - how to clip the BitmapImage (not control) or crop in non-rectangle form?

I'm looking for a way to clip the image (binary) in WPF.. I think I should be able to use WriteableBitmap but I couldn't find any function that I can use for clipping image. I looked at ...
0
votes
0answers
73 views

Copy a System.Drawing.Bitmap into a region of WriteableBitmap

I'm currently having some problems in integrating a System.Drawing.Bitmap into a WPF WriteableBitmap. I want to copy from the Bitmap to position (X,Y) of the WriteableBitmap. The following code ...
0
votes
0answers
64 views

How to change an WriteableBitmap's indexed palette at runtime?

We have succesfully used WPF's WriteableBitmap class for an application where we update in real-time the output of a 2D image processing algorithm. Currently the WriteableBitmap has a 480x480 size; ...
0
votes
0answers
22 views

Set a size of a WritableBitmap other than size buffer

I get a byte buffer containing a image from a third party decoder, the size of the byte buffer is always 640x480 pixels but the size of the actual image is different (This is for decoding ...
0
votes
1answer
302 views

how can i make setpixel like method in wpf?

I need a very fast method to update bitmap, something like setpixel in wpf. I don't know much about imaging in wpf ? I made my own method but it is very-very slow. I also tried to use ...
0
votes
1answer
407 views

Resizing the WritableBitmap

I have created a WriteableBitmap in Gray16 format. I want to resize this WriteableBitmap to my known dimention preserving the pixel format(Gray16). Is any one worked on the Resizing the ...
0
votes
1answer
413 views

Creating high performance animations in WPF

I'm in a situation that requires many animations with effects like transparency to be applied but when there are about 10 of them running, my application slows down to a grinding halt! :( I also, ...
0
votes
1answer
843 views

WPF WriteableBitmap and effects

Im trying to look into using the WPF WriteableBitmap class to allow my application to apply an opacity mask to an image. Basically I have a blue rectangle as an image, and another 100% transparent ...
0
votes
3answers
1k views

WPF WriteableBitmap Memory Leak?

I'm trying to figure out how to release a WriteableBitmap memory. In the next section of code I fill the backbuffer of a WriteableBitmap with a really large amount of data from "BigImage" (3600 * ...