WinHttp [vb.net] 웹 이미지를 vb.net 에서 불러오는 함수
페이지 정보
본문
Public Function WebImageView(ByVal URL As String) As Bitmap
Try
Dim Downloader As WebClient = New WebClient()
Dim ImageStream As Stream = Downloader.OpenRead(URL)
Dim DownloadImage As Bitmap = TryCast(Bitmap.FromStream(ImageStream), Bitmap)
Return DownloadImage
Catch ex As Exception
Return DirectCast(Nothing, Bitmap)
End Try
End Function
- 이전글[vb.net] HtmlAgilityPack 라이브러리를 이용한 크롤링시 라이브러리 사용 예시 20.09.08
- 다음글[vb.net] 글꼴 크기를 포함하여 양식의 크기가 조정될 때 모든 컨트롤의 동적 크기 조정 및 위치 조정 20.08.21
댓글목록
등록된 댓글이 없습니다.