Hi I trying to scale a png image with a transparent background. I need it to be 250x250 pixel.
Horizontal and vertical centered and keeping the correct aspect ration. The possibility to set a margin.
This is what I got so far.
var img = new System.Windows.Controls.Image();
var bi = new BitmapImage(new Uri("C://tmp/original.png", UriKind.RelativeOrAbsolute));
img.Stretch = Stretch.Uniform;
img.Width = 250;
img.Height = 250;
img.Source = bi;
var pngBitmapEncoder = new PngBitmapEncoder();
var stream = new FileStream("C://tmp/test3.png", FileMode.Create);
pngBitmapEncoder.Frames.Add(BitmapFrame.Create(img));
pngBitmapEncoder.Save(stream);
stream.Close();
I know that its not using the Image object yet, and therefor just saves the image without scaling it. But I'm having trouble saving the Image object. It gives a compile error of cannot convert from 'System.Windows.Controls.Image' to 'System.Uri'
Hope someone can help me :-)
EDIT
Updated the code, to the version with the compile error. just changed
pngBitmapEncoder.Frames.Add(BitmapFrame.Create(bi));
to
pngBitmapEncoder.Frames.Add(BitmapFrame.Create(img));
And here is a list of my using
using System;
using System.Drawing;
using System.IO;
using System.Windows;
using System.Windows.Controls.Primitives;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using Image = System.Windows.Controls.Image;