Created
December 9, 2013 12:04
-
-
Save jz5/7871285 to your computer and use it in GitHub Desktop.
URL から Bitmap の生成
This file contains 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
Dim webBmp As Bitmap | |
Using wc = New WebClient | |
webBmp = New Bitmap(wc.OpenRead(url)) | |
End Using |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment