웹에서 이미지 파일 다운로드 하는 방법 2008년 4월 5일2017년 9월 13일 DarkKaiser Leave a comment 출처 : http://www.codeproject.com/KB/tips/cs_imagedownload.aspx using System; using System.Collections.Generic; using System.Drawing; using System.Drawing.Imaging; using System.IO; using System.Net; using System.Text; public class DownloadImage { private string imageUrl; private Bitmap bitmap; public DownloadImage(string imageUrl) { this.imageUrl = imageUrl; } public void Download() { try … 모두 보기