一、目的:在使用Image控件时,如果图片太大或者图片数量过多时加载出来的程序内存会非常的大,但一般图片多时我们只要预览缩略图就可以,查看时再显示原图,这个时候需要通过通过设置BitmapImage的DecodePixelHeight和DecodePixelWidth属性来优化图片性能
二、实现
如下图分别是原图,DecodePixelHeight=200 150 100 50 20的显示效果,当做缩略图时设置一个合理的值可以在内存和清晰度上面做均衡
三、环境
VS2022
四、示例
具体实现方式如下
<Image><Image.Source><BitmapImage DecodePixelHeight="50" UriSource="2.jpg"/></Image.Source></Image>
DecodePixelHeight="50"就是设置50Pixel的效果,通常DecodePixelHeight和DecodePixelWidth只设置一个就可以了,这样可以保证比例正确
五、需要了解的知识点
BitmapImage.DecodePixelHeight Property (System.Windows.Media.Imaging) | Microsoft Learn
BitmapImage 类 (System.Windows.Media.Imaging) | Microsoft Learn
Image 类 (System.Windows.Controls) | Microsoft Learn
六、源码地址
GitHub - HeBianGu/WPF-ControlDemo: 示例
GitHub - HeBianGu/WPF-ControlBase: Wpf封装的自定义控件资源库
GitHub - HeBianGu/WPF-Control: WPF轻量控件和皮肤库
七、了解更多
System.Windows.Controls 命名空间 | Microsoft Learn
https://github.com/HeBianGu
HeBianGu的个人空间-HeBianGu个人主页-哔哩哔哩视频