자료실

부자는 돈을 써서 시간을 아끼지만 가난한 사람은 시간을 써서 돈을 아낀다

vb.net

IT HUB를 찾아주셔서 감사합니다.

WinHttp [vb.net] 웹 이미지를 vb.net 에서 불러오는 함수

페이지 정보

profile_image
작성자 하나를하더라도최선을
댓글 0건 조회 6,346회 작성일 20-08-29 16:24

본문

Public Function WebImageView(ByVal URL As StringAs 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
 

댓글목록

등록된 댓글이 없습니다.