Quantcast
Viewing all articles
Browse latest Browse all 20

Rendering bitmap is Blurry in WPF

Hello,

I am trying to convert some vector based objects into a raster bitmap.
I manage to do that, but the result is blurry, meaning, edges are blurry instead of jagged.
I assume an anti-aliasing algorithm is applied, but I do not want to be applied...

here is my simplified code in which I draw a circle and make a raster out of it to an Image Control:

Code:
DrawingVisual drawingVisual = new DrawingVisual();
DrawingContext drawingContext = drawingVisual.RenderOpen()...

Read more

Viewing all articles
Browse latest Browse all 20

Trending Articles