-
-
Save cchitsiang/cbc8fd4c1545b5f83703 to your computer and use it in GitHub Desktop.
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
// Retrieve storage account from connection string. | |
CloudStorageAccount storageAccount = CloudStorageAccount.Parse( | |
CloudConfigurationManager.GetSetting("StorageConnectionString")); | |
// Create the blob client. | |
CloudBlobClient blobClient = storageAccount.CreateCloudBlobClient(); | |
// Retrieve reference to a previously created container. | |
CloudBlobContainer container = blobClient.GetContainerReference("mycontainer"); | |
// Retrieve reference to a blob named "myblob". | |
CloudBlockBlob blockBlob = container.GetBlockBlobReference("newfile.jpg"); | |
var ms = new MemoryStream(); | |
ImageBuilder.Current.Build("~/originalFile.jpg", ms, new ResizeSettings("width=3200&height=3200&format=jpg")); | |
ms.Seek(0,SeekOrigin.Begin); | |
blockBlob.UploadFromStream(ms); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment