我正在尝试从私有Azure Blob存储容器中下载blob并将其显示在图像标记中。
在下面的问题中,您可以看到我如何以Stream格式从Web API返回blob。
Getting 403 error when trying to retrieve an Azure blob on Web API request
从HTTP响应中,我可以通过将其包含在请求的headers部分中来检索blob的内容类型。使用它来生成要在图像标记上使用的数据URI。我知道我需要将Stream转换为base64字符串,以便能够将其包含在图像标记的src属性中。我目前正在努力将HTTP请求的结果转换为base64字符串。
我创建了这个js小提琴,它包含从HTTP请求接收的数据(图像)以及我将数据转换为base64字符串的尝试:
'http://jsfiddle.net/chesco9/6a7ohgho/'
修改
谢谢汤姆的帮助。我能够实现您的解决方案并且解决了问题。我已经被困在这个问题上几天了。
public async Task<AzureBlobModel> DownloadBlob(Guid blobId)
{
try
{
//get picture record
Picture file = await _media.GetPictureAsync(blobId);
// get string format blob name
var blobName = file.PictureId.ToString() + file.Extension;
if (!String.IsNullOrEmpty(blobName))
{
var blob = _container.GetBlockBlobReference(blobName);
// Strip off any folder structure so the file name is just the file name
var lastPos = blob.Name.LastIndexOf('/');
var fileName = blob.Name.Substring(lastPos + 1, blob.Name.Length - lastPos - 1);
var fileLength = blob.Properties.Length;
var stream = await blob.OpenReadAsync();
MemoryStream ms = new MemoryStream();
stream.CopyTo(ms);
var result = new AzureBlobModel()
{
FileName = fileName,
FileSize = blob.Properties.Length,
Stream = stream,
ContentType = blob.Properties.ContentType,
StreamBase64 = Convert.ToBase64String(ms.ToArray())
};
return result;
}
}
catch(Exception ex)
{
await _log.CreateLogEntryAsync("exception thrown: " + ex.ToString());
}
await _log.CreateLogEntryAsync("returning null");
// Otherwise
return null;
}
答案 0 :(得分:1)
我目前正在努力将HTTP请求的结果转换为base64字符串。
根据我的理解,现在您可以从Azure存储中下载blob。 根据您提到的link,WebApi返回AzureBlobModel。 我们可以使用C#代码后端轻松地将流转换为base64字符串。您可以在代码中添加以下代码。如果是不可能的,请在AzureBlobModel中返回此值。
MemoryStream ms = new MemoryStream();
stream.CopyTo(ms);
string strBase64 = Convert.ToBase64String(ms.ToArray());