你可以将System.Windows.Control.Image转换为System.Drawing.Icon吗?

时间:2009-08-26 20:17:11

标签: c# wpf image

问题的标题几乎说明了问题。有可能吗?

4 个答案:

答案 0 :(得分:4)

作为替代方案,我使用了here找到的提示:

public static Icon Convert(BitmapImage bitmapImage)
{
    var ms = new MemoryStream();
    var encoder = new PngBitmapEncoder(); // With this we also respect transparency.
    encoder.Frames.Add(BitmapFrame.Create(bitmapImage));
    encoder.Save(ms);

    var bmp = new Bitmap(ms);
    return Icon.FromHandle(bmp.GetHicon());
}

答案 1 :(得分:3)

我修改了here的示例。这似乎工作得很好。

    public static Icon Convert(BitmapImage bitmapImage)
    {
        System.Drawing.Bitmap bitmap = null;
        var width = bitmapImage.PixelWidth;
        var height = bitmapImage.PixelHeight;
        var stride = width * ((bitmapImage.Format.BitsPerPixel + 7) / 8);

        var bits = new byte[height * stride];

        bitmapImage.CopyPixels(bits, stride, 0);

        unsafe
        {
            fixed (byte* pB = bits)
            {
                var ptr = new IntPtr(pB);

                bitmap = new System.Drawing.Bitmap(width, height, stride,
                                                System.Drawing.Imaging.PixelFormat.Format32bppPArgb,
                                                ptr);
            }

        }

        return Icon.FromHandle(bitmap.GetHicon());
    }

答案 2 :(得分:2)

几个月后我们遇到了这个问题,我们找到了这个解决方案

http://www.dreamincode.net/code/snippet1684.htm

我很高兴我们在评论中插入参考资料到我们找到的东西。我更喜欢发送给你而不是我的代码,因为它与一个获取多个压缩文件合并,这复杂化了你真正想要的东西。

答案 3 :(得分:0)

我从你的代码中创建了一个WPF XAML IValueConverter类,它将带有图像的byte()数组转换为Icon,这里是代码:

Public Class ByteArrayToIconConverter
Implements IValueConverter

' Define the Convert method to change a byte[] to icon.
Public Function Convert(ByVal value As Object, _
    ByVal targetType As Type, ByVal parameter As Object, _
    ByVal culture As System.Globalization.CultureInfo) As Object _
    Implements System.Windows.Data.IValueConverter.Convert

    If Not value Is Nothing Then
        ' value is the data from the source object.
        Dim data() As Byte = CType(value, Byte())
        Dim ms1 As MemoryStream = New MemoryStream(data)
        Dim ms2 As MemoryStream = New MemoryStream()

        Dim img As New BitmapImage()

        img.BeginInit()
        img.StreamSource = ms1
        img.EndInit()

        Dim encoder As New PngBitmapEncoder()  
        encoder.Frames.Add(BitmapFrame.Create(img))
        encoder.Save(ms2)

        Dim bmp As New Bitmap(ms2)
        Dim newIcon As Icon = Icon.FromHandle(bmp.GetHicon())

        Return newIcon

    End If


End Function

' ConvertBack is not implemented for a OneWay binding.
Public Function ConvertBack(ByVal value As Object, _
    ByVal targetType As Type, ByVal parameter As Object, _
    ByVal culture As System.Globalization.CultureInfo) As Object _
    Implements System.Windows.Data.IValueConverter.ConvertBack

    Throw New NotImplementedException

End Function
End Class