Following initial situation: A used framework needs an ImageSource as input for rendering a special item in the GUI. The samples shows this code to fulfill this:

Uri uri = new Uri("pack://application:,,,/HelloWorldTask;Component/Sample.png");
return new System.Windows.Media.Imaging.BitmapImage(uri);

this Sample.png uses transparency and so its nice rendered in the GUI

Now i wanna put this PNG in a ressource - because it is safer during refactorings (errors are poulated during compile time, not run time). If i understand right, during putting the png in the ressource it will be transformed to a bitmap for further access.

So i have the problem to get the picture back from the System.Drawing.Bitmap to WPF pendants. There are a lot of variants to do that, but all i have tried doesnt offer logic to rebuild the transparency.

btw: The transparent-color could be taken from Pixel(0, 0) - its okay for the first step.

Thanks a lot for help to get this running. Marko

some used code snippets:

support the framework:

protected override ImageSource GetImageSource()
{
    var pixel = _bitmap.GetPixel(0, 0);
    _bitmap.MakeTransparent(pixel);
    var image = _bitmap.ToWpfBitmap();
    return image;
}

transforming to WPF bitmap

public static BitmapSource ToWpfBitmap(this Image bitmap)
{
    using (var stream = new MemoryStream())
    {
        bitmap.Save(stream, ImageFormat.Bmp);

        stream.Position = 0;
        var result = new BitmapImage();
        result.BeginInit();
        result.CacheOption = BitmapCacheOption.OnLoad;
        result.StreamSource = stream;
        result.EndInit();
        result.Freeze();
        return result;
    }
}
link|improve this question
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.