기타 [vb.net] URL 이미지 Image 변환 및 저장
페이지 정보
본문
Dim URL As String = "http://program1472.com/data/common/6e78fa096f9750e12db6.png"
Dim img As Image = System.Drawing.Image.FromStream(Net.WebRequest.Create(URL).GetResponse().GetResponseStream())
img.Save(APP_PRODUCT_PATH & "\test.png", Imaging.ImageFormat.Png)
또는
Dim URL As String = "http://program1472.com/data/common/6e78fa096f9750e12db6.png"
Dim img As Image = Bitmap.FromStream(New IO.MemoryStream(DirectCast(New Net.WebClient, Net.WebClient).DownloadData(URL)))
img.Save(APP_PRODUCT_PATH & "\test.png", Imaging.ImageFormat.Png)
- 이전글[vb.net] "하드코딩"과 "소프트코딩"(로딩) 22.06.29
- 다음글듀얼 모니티 제어 및 폼 띄우기 22.04.07
댓글목록
등록된 댓글이 없습니다.