wpf读取网络图片:
Posted lonelyxmas
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了wpf读取网络图片:相关的知识,希望对你有一定的参考价值。
原文:wpf读取网络图片:
项目发布之后,图片保存到服务器(成为网络图片):
读取方法如下面所示:
wpf读取网络图片:
private void ViewImage(string fileUri)
{
BitmapImage bitImage = new BitmapImage();
bitImage.BeginInit();
bitImage.UriSource = new Uri(fileUri, UriKind.Absolute);
bitImage.DecodePixelWidth = 300;
bitImage.EndInit();
imgView.Source = bitImage;
}
以上是关于wpf读取网络图片:的主要内容,如果未能解决你的问题,请参考以下文章
Python根据 URL 读取网络图片的两种方式(OpenCV)