Created
July 14, 2012 15:54
-
-
Save DinisCruz/3111886 to your computer and use it in GitHub Desktop.
C# - Download png, convert to Icon and save to disk
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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