Skip to content

Instantly share code, notes, and snippets.

@DinisCruz
Created July 14, 2012 15:54
Show Gist options
  • Select an option

  • Save DinisCruz/3111886 to your computer and use it in GitHub Desktop.

Select an option

Save DinisCruz/3111886 to your computer and use it in GitHub Desktop.
C# - Download png, convert to Icon and save to disk
var file = "NodePadIcon.ico".tempFile();
var icon = "http://upload.wikimedia.org/wikipedia/commons/e/ef/Gartoon-Gedit-icon.png".uri().download(false)
.bitmap().asIcon();
using (FileStream fs = new FileStream(file, FileMode.Create))
icon.Save(fs);
panel.add_PictureBox().open(file);
return file;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment