보뇨 다이어리

PictureBox URL 이미지 가져오기 본문

컴퓨터 관련/C# 정보

PictureBox URL 이미지 가져오기

보뇨 2019. 1. 14. 16:05
반응형

코딩하던중 발생한것이 PictureBox 를 visible = false 하게 되면 아무리 이미지 URL 을 넣어도 image 에 초기화가 안된다는 문제점이 생김....

그래서 어떻게 해야하나 싶은와중에 역시 갓갓갓 스택오버플로우 찬양합니다

사용방법은 아래와 같다

1
2
var webClient = new WebClient();
byte[] imageBytes = webClient.DownloadData("http://www.google.com/images/logos/ps_logo2.png");
cs

using 키워드를 활용하여 작성하는 방법도 존재한다

1
2
3
4
string someUrl = "http://www.google.com/images/logos/ps_logo2.png"
using (var webClient = new WebClient()) { 
    byte[] imageBytes = webClient.DownloadData(someUrl);
}
cs






출처

https://stackoverflow.com/questions/4599686/image-to-byte-array-from-a-url

반응형