Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I convert WriteableBitmap to BitmapImage?

BitmapImage bitmapImage = new BitmapImage(new Uri("arka_projects_as_logo.png", UriKind.Relative));
Image uiElement = new Image() { Source = bitmapImage };
ScaleTransform t = new ScaleTransform() { ScaleX = 0.2, ScaleY = 0.2 };
WriteableBitmap writeableBitmap = new WriteableBitmap(uiElement,t);

I want to insert the result of this conversions (writeableBitmap) into System.Windows.Controls.Image. When I do this:

Image arkaImage = new Image() { Source = writeableBitmap };

arkaImage isn't shown at all. What can be done to make it work?

like image 481
Sergey Avatar asked Oct 21 '10 10:10

Sergey


2 Answers

WriteableBitmap wb = ..
using (MemoryStream ms = new MemoryStream())
{
    wb.SaveJpeg(ms, (int)image1.Width, (int)image1.Height, 0, 100);
    BitmapImage bmp = new BitmapImage();
    bmp.SetSource(ms);
}
like image 123
abatishchev Avatar answered Oct 25 '22 13:10

abatishchev


Why don't you just apply the ScaleTransform to the UIElement as well?

like image 2
Mads Lee Jensen Avatar answered Oct 25 '22 15:10

Mads Lee Jensen