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 ...
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
1answer
258 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
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
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
48 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
1answer
297 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
1k views
Android GridView - How to change a bitmap dynamically?
Hello I have a gridView which I use to show some pictures on (small thumb of diffrent levels).
When the user finishes one level, I would like to change the thumb for that level. (Somehow show that it ...
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 ...