Created
August 4, 2016 19:35
-
-
Save cburnette/177a2f4b7c3bf601fdd9ee8c9d480547 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
public async Task<FileStreamResult> Thumbnail(string id) | |
{ | |
var thumbBytes = await BoxHelper.UserClient().FilesManager.GetThumbnailAsync(id, minHeight: 256, minWidth: 256, maxHeight: 256, maxWidth: 256); | |
return new FileStreamResult(thumbBytes, "image/png"); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment