■ BitmapImage 클래스를 사용해 웹에서 비트맵 이미지를 구하는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 |
using System; using System.IO; using System.Net; using System.Windows.Media.Imaging; #region 비트맵 이미지 구하기 - GetBitmapImage(sourceURI) /// <summary> /// 비트맵 이미지 구하기 /// </summary> /// <param name="sourceURI">소스 URI</param> /// <returns>비트맵 이미지</returns> public BitmapImage GetBitmapImage(string sourceURI) { byte[] bufferArray; if(sourceURI.Substring(0, 4).ToLower().Equals("http")) { WebClient webClient = new WebClient(); bufferArray = webClient.DownloadData(new Uri(sourceURI, UriKind.Absolute)); webClient.Dispose(); } else { bufferArray = File.ReadAllBytes(sourceURI); } MemoryStream memoryStream = new MemoryStream(bufferArray); BitmapImage bitmapImage = new BitmapImage(); bitmapImage.BeginInit(); bitmapImage.CacheOption = BitmapCacheOption.OnLoad; bitmapImage.StreamSource = memoryStream; bitmapImage.EndInit(); return bitmapImage; } #endregion |