- 
      
 - 
        
Save cchitsiang/cbc8fd4c1545b5f83703 to your computer and use it in GitHub Desktop.  
Revisions
- 
        
lilith revised this gist
Apr 18, 2013 . 1 changed file with 2 additions and 0 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -15,4 +15,6 @@ ImageBuilder.Current.Build("~/originalFile.jpg", ms, new ResizeSettings("width=3200&height=3200&format=jpg")); ms.Seek(0,SeekOrigin.Begin); blockBlob.UploadFromStream(ms);  - 
        
lilith created this gist
Apr 15, 2013 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,18 @@ // 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")); blockBlob.UploadFromStream(ms);