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 ...
4
votes
2answers
684 views

WPF/BackgroundWorker and BitmapSource problem

I am a beginner with WPF and trying a home project to become familiar with the technology. I have a simple form where the user selects an image file, I then display EXIF data along with a thumbnail ...
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 ...
3
votes
1answer
4k views

how to save a WPF image to a file

in WPF, the System.Windows.Clipboard.getImage() function returns a BitmapSource object. As a newbie in WPF coming from a WinForms background, its not clear to me how to save this image to a file. ...
2
votes
1answer
88 views

How do I convert from a Brush (e.g. DrawingBrush) to a BitmapSource?

I have a DrawingBrush with some vector graphics. I want to convert it to BitmapSource as an intermediate step to getting it to Bitmap. What's the (best) way to do this?
2
votes
1answer
201 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
2answers
4k views

using BitmapSource as Image source in WPF

I am trying to update an Image (_browserScreenshot below) object in XAML by changing the source image every time an event determines the source needs updating. Right now I have this: public ...
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
269 views

WPF - Convert file to Byte[] to BitmapSource using JpegBitmapDecoder

I need to read a jpg file and latyer display it in an Image controll. The following works perfectly: imgTwo.Source = FetchImage(@"C:\Image075.jpg"); public BitmapSource FetchImage(string URLlink) { ...
1
vote
0answers
268 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
257 views

Using resources images in WPF

From what I've seen, WPF images' source is a BitmapSource object while the Resources images are read as bitmap. I've easily found a way to convert images from Bitmap format into BitmapSource format ...
1
vote
1answer
522 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
2answers
912 views

Convert WPF BitmapSource to Icon for window

I have a 16x16 .png file which I have loaded as an ImageSource (BitmapSource) and it is working fine when I use it on an Image in a tabcontrol header. I now want to use that same image in a floating ...
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 ...
1
vote
1answer
2k views

How do you make sure WPF releases large BitmapSource from Memory?

System: Windows XP SP3, .NET 3.5, 4GB RAM, Dual 1.6gHz I have a WPF application that loads and transitions (using Storyboard animations) extremely large PNGs. These PNGs are 8190x1080 in resolution. ...
1
vote
1answer
796 views

Unable to retrieve TIFF pages from TiffBitmapDecoder.Frames — all frames are page 1

I'm trying to convert a multipage tiff image into a multipage XPS document. The problem I'm having is with the TiffBitmapDecoder and its BitmapFrames. Here's the code: private static void ...
1
vote
2answers
2k views

Is BitmapSource the only type can be used in Image Source?

We can use Bitmapsource object as the content of a Image control, However if I only have Bitmap object, can I use it directly, if I convert Bitmap to Bitmapsouce using the following method: ...
0
votes
0answers
18 views

Converting a BitmapSource to Image keeping all frames

I have a method here that is supposed to produce a System.Drawing.Image instance. Consider the following prerequesites: I get a BitmapSource as a method parameter Below you find the code that does ...
0
votes
2answers
78 views

WPF frozen BitmapImage not showing

I am using a viewmodel bound to an image property on the UI and the viewmodel contains an ImageSource property. I set that property using the following function private BitmapImage ...
0
votes
0answers
47 views

Manipulating pixels in BitmapSource

Is there a way to manipulate the individual pixels of the Bitmap behind a BitmapSource or do I have to convert the BitmapSource to System.Drawing.Bitmap? Latter exposes such methods as GetPixels and ...
0
votes
0answers
130 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
79 views

BitmapSource vs DrawingImage

I know DrawingImage has a Drawing property to which we can set any of the Drawing sub-classes which represent a geometry with a brush and a pen. But where does BitmapSource store its pixels, in the ...
0
votes
1answer
63 views

ImageSource Class on MSDN Mistake?

I am unclear of what this means from the definition on ImageSource class on MSDN: Represents a object type that has a width, height, and ImageMetadata such as a BitmapSource and a DrawingImage. ...
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
680 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
170 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
1answer
296 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 ...
0
votes
2answers
819 views

create an empty BitmapSource in C#

Waht is the fatest (few lines of code and low resource usage) way to create an empty (0x0px or 1x1px and fully transparent) BitmapSource instance in c# that wehn used renders nothing.
0
votes
1answer
377 views

How to draw a line on an existing BitmapSource in WPF?

I would like to draw a line (or any geometric shape) on an existing BitmapSource object in my WPF application. What is the best way to do it ? The BitmapSource is the result of a ...
0
votes
1answer
2k views

Display Image from Byte Array in WPF - Memory Issues

I've developed an application to capture and save images to a database, but I'm having an issue with memory usage. On my domain object I have 3 properties: Image - Byte array, contents are a jpg ...
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 ...
0
votes
1answer
53 views

WPF - Generate BitmapSource from Over state of a button

I can generate a BitmapSource from a button fine, however it always is just the image of the normal state of the button. I want to be able to generate a BitmapSource of the over state of a button. I ...
0
votes
1answer
585 views

Drawing a subregion of a BitmapSource

I'm creating a level editor in WPF for a 2D tile-based game. I'm trying to figure out the best way to load the tileset Image file and render each tile in the appropriate location to reconstruct the ...