我希望你能帮助:)
在我的MVC.net core 2.2中,调试的时候很简单:
MemoryStream ms = new MemoryStream();
初始化后,它给了我一个:
ReadTimeout: 'ms.ReadTimeout' threw an exception of type 'System.InvalidOperationException'
WriteTimeout: 'ms.WriteTimeout' threw an exception of type 'System.InvalidOperationException'
现在解决方案不会崩溃或任何事情。但是,如果我检查 Visual Studio 中的“ms”,那就是它所说的。
我想做的是通过 SixLabors.ImageSharp 做:
IFormFile file = viewModel.File.Image;
using (Image<Rgba32> image = Image.Load(file.OpenReadStream()))
using (var ms = new MemoryStream())
{
image.Mutate(x => x.Resize(1000, 1000));
SixLabors.ImageSharp.Formats.Jpeg.JpegEncoder jpegEncoder =
new SixLabors.ImageSharp.Formats.Jpeg.JpegEncoder();
jpegEncoder.Quality = 80;
image.Save(ms, jpegEncoder);
StorageCredentials storageCredentials = new StorageCredentials("Name", "KeyValue");
// Create cloudstorage account by passing the storagecredentials
CloudStorageAccount storageAccount = new CloudStorageAccount(storageCredentials, true);
// Create the blob client.
CloudBlobClient blobClient = storageAccount.CreateCloudBlobClient();
// Get reference to the blob container by passing the name by reading the value from the configuration (appsettings.json)
CloudBlobContainer container = blobClient.GetContainerReference("storagefolder");
// Get the reference to the block blob from the container
CloudBlockBlob blockBlob = container.GetBlockBlobReference("image.jpg");
await blockBlob.UploadFromStreamAsync(ms);
}
但是保存的流是空的(调试时Capacity,Length和Position中有值。但是将其上传到azure blob存储后,大小为0)。
亲切的问候安达·亨德里克森