C# [C#] 웹 이미지를 C# 에서 불러오는 함수
페이지 정보
본문
public Bitmap WebImageView(string URL)
{
try
{
WebClient Downloader = new WebClient();
Stream ImageStream = Downloader.OpenRead(URL);
Bitmap DownloadImage = Bitmap.FromStream(ImageStream) as Bitmap;
return DownloadImage;
}
catch (Exception)
{
return null;
}
}
- 이전글[C#] ToolStripTextBox에서 Enter 키를 누를 때 ContextMenuStrip 닫기 22.01.29
- 다음글[C#] [테스트 검수중] .Net 환경에서 Selenium을 사용하여 모바일 UI 구현 20.05.22
댓글목록
등록된 댓글이 없습니다.