Tagged Questions
5
votes
2answers
8k views
Is there a good way to convert between BitmapSource and Bitmap?
As far as I can tell the only way to convert from BitmapSource to Bitmap is through unsafe code... Like this (from Lesters WPF blog):
myBitmapSource.CopyPixels(bits, stride, 0);
unsafe
{
fixed ...
5
votes
3answers
3k views
Image loading memory leak with C#
I have a memory leak issue in my application which loads a large amount of images. I'm rather new to C#, and thought my days of memory leak issues were past. I can't figure out the problem - maybe I'm ...
0
votes
1answer
337 views
Problem with convert Bitmap to BitmapSource
I have problem with converting bitmap to bitmapsource, I write something like this http://www.codeproject.com/KB/WPF/BitmapToBitmapSource.aspx?msg=3590727 , but I get exceptions: A first chance ...