Answers for "download img from url c#"

C#
0

c# how-to-download-image-from-url

using (WebClient webClient = new WebClient()){
	byte[] dataArr = webClient.DownloadData("url.jpg");
	//save file to local
  	File.WriteAllBytes(@"path.png", dataArr);
}
Posted by: Guest on December-21-2020
-2

C# download image on url

download image
Posted by: Guest on August-29-2020

C# Answers by Framework

Browse Popular Code Answers by Language