首页 > 解决方案 > 如何将调整大小的图像保存到 ASP.NET Core 应用程序中的 Azure Blob 存储?

问题描述

我正在使用该ImageSharp库在将图像上传到 Azure 之前重新缩放图像,应用程序在执行UploadBlob操作时挂起且没有错误,我认为这是导致它的流。上传图像时,从图像流中收集信息,我创建一个空MemoryStream的,使用调整图像大小ImageSharp,用我新缩放的图像填充MemoryStream并尝试将其上传MemoryStream到 Azure,我认为它不喜欢它它挂在哪里。

MemoryStream 是在这种情况下使用的正确东西还是其他东西?

汽车控制器.cs

[HttpPost]
[ValidateAntiForgeryToken]
public IActionResult Create(Car car)
{
    // Define the cancellation token.
    CancellationTokenSource source = new CancellationTokenSource();
    CancellationToken token = source.Token;

    if (ModelState.IsValid)
    {
        //Access the car record
        _carService.InsertCar(car);

        //Get the newly created ID
        int id = car.Id;

        //Give it a name with some virtual directories within the container         
        string fileName = "car/" + id + "/car-image.jpg";
        string strContainerName = "uploads";

        //I create a memory stream ready for the rescaled image, not sure this is right.
        Stream outStream = new MemoryStream();

        //Access my storage account
        BlobServiceClient blobServiceClient = new BlobServiceClient(accessKey);
        BlobContainerClient containerClient = blobServiceClient.GetBlobContainerClient(strContainerName);

        //Open the image read stream
        var carImage = car.ImageFile.OpenReadStream();

        //Rescale the image, save as jpeg.
        using (Image image = Image.Load(carImage))
        {
            int width = 250;
            int height = 0;
            image.Mutate(x => x.Resize(width, height));                    
            image.SaveAsJpeg(outStream);
        }

        var blobs = containerClient.UploadBlob(fileName, outStream);
        return RedirectToAction(nameof(Index));
    }            
    return View(car);
}

标签: c#asp.net-coreazure-blob-storageimagesharp

解决方案


它与 ImageSharp 库没有任何关系。

保存后需要重新设置outStream位置。BlobContainerClient正在尝试从流的末尾读取。


推荐阅读