Tagged Questions

1
vote
1answer
270 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) { ...
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
0answers
26 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
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
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 ...