26

我有一个带有标题的窗口。当用户从下拉列表中选择一个选项时,标题图像可以改变。问题是当图像加载时,它是模糊的、拉伸的和像素化的。这些是我正在使用的 PNG 文件,它们在动态设置源之前看起来不错。

这是我用来更改图像源的代码。

string strUri2 = String.Format(@"pack://application:,,,/MyAssembly;component/resources/main titles/{0}", CurrenSelection.TitleImage);
Stream iconStream2 = App.GetResourceStream(new Uri(strUri2)).Stream;
imgTitle.Source = HelperFunctions.returnImage(iconStream2);

这里是辅助函数。

    public static BitmapImage returnImage(Stream iconStream)
    {
        Bitmap brush = new Bitmap(iconStream);
        System.Drawing.Image img = brush.GetThumbnailImage(brush.Height, brush.Width, null, System.IntPtr.Zero);
        var imgbrush = new BitmapImage();
        imgbrush.BeginInit();
        imgbrush.StreamSource = ConvertImageToMemoryStream(img);
        imgbrush.CreateOptions = BitmapCreateOptions.PreservePixelFormat;
        imgbrush.EndInit();
        var ib = new ImageBrush(imgbrush);
        return imgbrush;
    }

    public static MemoryStream ConvertImageToMemoryStream(System.Drawing.Image img)
    {
        var ms = new MemoryStream();
        img.Save(ms, System.Drawing.Imaging.ImageFormat.Png);
        return ms;
    }

和 XAML

            <Image x:Name="imgTitle" HorizontalAlignment="Left" VerticalAlignment="Bottom" Grid.Column="1" Grid.Row="1" Stretch="None" d:IsLocked="False"/>

对于参考:

xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 

有人有什么想法吗?

4

6 回答 6

28

我能想到两件事:

首先,尝试加载图像:

string strUri2 = String.Format(@"pack://application:,,,/MyAseemby;component/resources/main titles/{0}", CurrenSelection.TitleImage);
imgTitle.Source = new BitmapImage(new Uri(strUri2));

可能问题在于 WinForm 的图像大小调整,如果图像被拉伸,将图像控件上的 Stretch 设置为“Uniform”或“UnfirofmToFill”。

第二种选择可能是图像未与像素网格对齐,您可以在我的博客http://www.nbdtech.com/blog/archive/2008/11/20/blurred-images-in-上阅读相关内容wpf.aspx

于 2008-12-29T08:51:09.133 回答
10

嘿,这个有点难看,但它只有一行:

imgTitle.Source = new BitmapImage(new Uri(@"pack://application:,,,/YourAssembly;component/your_image.png"));
于 2009-09-11T21:25:23.113 回答
4

这就是它对我的完美工作方式。在窗口资源中添加图像。

   <Image x:Key="delImg" >
    <Image.Source>
     <BitmapImage UriSource="Images/delitem.gif"></BitmapImage>
    </Image.Source>
   </Image>

然后代码是这样的。

Image img = new Image()

img.Source = ((Image)this.Resources["delImg"]).Source;

“this”指的是 Window 对象

于 2009-11-19T05:08:41.513 回答
3
Me.imgAddNew.Source = New System.Windows.Media.Imaging.BitmapImage(New Uri("/SPMS;component/Images/Cancel__Red-64.png", UriKind.Relative))
于 2010-09-18T20:07:07.463 回答
3

像我一样-> 工作是:

string strUri2 = Directory.GetCurrentDirectory()+@"/Images/ok_progress.png"; image1.Source = new BitmapImage(new Uri(strUri2));

于 2011-03-08T16:23:55.660 回答
2

在图像上尝试 Stretch="UniformToFill"

于 2008-12-29T06:04:48.177 回答