Tagged Questions

5
votes
2answers
7k 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 ...
3
votes
1answer
264 views

C# WPF BitmapSource Memory Leak?

I'm developing a BlackJack program which shows a BlackJack Table, cards, etc. The plan is that it'll be playing thousands of hands one after another with an automated strategy. I have a PlayerSeat ...
2
votes
1answer
204 views

Get System.Drawing.Bitmap of a WPF Area using VisualBrush

The point is, that I need to convert to a System.Drawing.Bitmap (.Net Framework 2.0) to get a single frame of an WPF Grid with its content. I read about VisualBrush and DrawingBrush but I cannot ...
2
votes
4answers
2k views

BitmapSource to BitmapImage

I need to parse the content of Clipboard.GetImage() (a BitmapSource) to a BitmapImage. Does anyone knows how can this be done?
2
votes
1answer
1k views

Why does BitmapSource.Create throw an ArgumentException?

I'm trying to get an bitmap created from raw data to show in WPF, by using an Image and a BitmapSource: Int32[] data = new Int32[RenderHeight * RenderWidth]; for (Int32 i = 0; i < RenderHeight; ...
1
vote
0answers
52 views

BitmapSource.CopyPixels->byte[]->BitmapSource how to do this simple?

How to do efficient BitmapSource to byte[] and vice versa conversion in C#?
1
vote
1answer
524 views

Is it possible to modify a WPF BitmapSource in memory 'unsafe'ly from another thread

I would like to do some processing of images in a WPF application. However, I would like to modify the pixels of a BitmapSource in memory at runtime. I'm currently managing to do this using 'unsafe' ...
1
vote
4answers
1k views

How to copy DispatcherObject (BitmapSource) into different thread?

I am trying to figure out how can I copy DispatcherObject (in my case BitmapSource) into another thread. Use case: I have a WPF app that needs to show window in a new thread (the app is actually ...
1
vote
1answer
382 views

Remove alpha from a BitmapSource

I use BitBlt() and CreateBitmapSourceFromHBitmap() to capture a window as a BitmapSource that I can display on an Image element in a WPF application. But for some reason, most of the application that ...
1
vote
1answer
552 views

WPF Image won't display BitmapSource

I'm new to using WPF and GDI, and I'm having trouble displaying an image. My eventual goal is to build something expose-like. So far, I gray-out the screens, gather all the active HWNDs, and capture ...
0
votes
0answers
27 views

scaling down a BitmapSource and getting rid of the original

In C# I create a BitmapSource using BitmapSource::Create which takes an IntPtr for the data buffer and a buffer size. However, my image sources can be quite high resolution, so I want to scale it ...
0
votes
0answers
132 views

Out of memory when using BitmapSource

I'm changing source of a WPF image on run time with a frequency of 30ms ( 30 fps ). I'm getting an OutOfMemory. In the following code, iImage is a private object displayed and owned by the wpf ...
0
votes
1answer
124 views

How can I get the PixelFormat of a BitmapSource

I am using the following to convert a BitmapSource to a Bitmap: internal static Bitmap ConvertBitmapSourceToBitmap(BitmapSource bitmapSrc) { int width = bitmapSrc.PixelWidth; int height = ...
0
votes
1answer
261 views

PngBitmapDecoder stream question

Don't know a whole lot about streams. Why does the first version work using a file but the second does not? Putting a breakpoint on "return dest;" it looks like both have created exactly the same ...
0
votes
1answer
681 views

Copying from BitmapSource to WritableBitmap

I am trying to copy a part of a BitmapSource to a WritableBitmap. This is my code so far: var bmp = image.Source as BitmapSource; var row = new WriteableBitmap(bmp.PixelWidth, bottom - top, ...
0
votes
1answer
172 views

ArgumentException not caught when using BitmapImage.BeginInit()

Why when an ArgumentException occurs because image.jpg has an invalid metadata header does the first example catch the exception, and the second example does not? Example 1: try { Uri myUri = new ...
0
votes
2answers
1k views

C# Bitmap BitmapImage bitmapsource

I have some code I found somewhere on the Net. unsafe static Bitmap SaveFrame(IntPtr pFrame, int width, int height) { try { int x, y; int linesize = width ...
0
votes
2answers
1k views

InteropBitmap to BitmapImage

I'm trying to Convert a Bitmap (SystemIcons.Question) to a BitmapImage so I can use it in a WPF Image control. I have the following method to convert it to a BitmapSource, but it returns an ...