2
我需要從UriSrouce創建一個BitmaImage並打印它(在WPF應用程序中)。使用下面的代碼我能打印的圖像:如何使用BitmapImage設置UriSource與遠程服務器?
Image imgVoucher = new Image();
BitmapImage bImgVoucher = new BitmapImage();
bImgVoucher.BeginInit();
bImgVoucher.UriSource = new Uri(@"C:\logo-1.png", UriKind.Absolute); // Print ok
bImgVoucher.EndInit();
imgVoucher.Source = bImgVoucher;
相同的代碼和相同的圖像,但與UriSource指向Web服務器,圖像不打印,並不會引發錯誤。任何想法我做錯了什麼?
Image imgVoucher = new Image();
BitmapImage bImgVoucher = new BitmapImage();
bImgVoucher.BeginInit();
bImgVoucher.UriSource = new Uri("http://123123.com/logo.png", UriKind.Absolute); // Does not print
bImgVoucher.EndInit();
imgVoucher.Source = bImgVoucher;
我可以在我的瀏覽器中加載圖片 – GibboK