gpt4 book ai didi

c# - 如何在.net core中创建缩略图?使用 IFormFile 的帮助

转载 作者:行者123 更新时间:2023-12-02 01:27:09 29 4
gpt4 key购买 nike

我需要从原始图像创建缩略图,并且需要将两个图像保存在本地文件夹中。我正在使用 html 文件控件来上传图像

<input type="file" class="form-control" asp-for="ImageName" name="ProductImage" id="ProductImage">

在提交表单时,我将其获取为 IFromFile

[HttpPost]
[ValidateAntiForgeryToken]
public ActionResult Edit(Guid id, ProductDTO product, IFormFile
ProductImage)
{
if (ModelState.IsValid)
{
byte[] fileBytes;
using (var ms = new MemoryStream())
{
ProductImage.CopyTo(ms);
fileBytes = ms.ToArray();
}
}
}

我已将其转换为 byte[] 并将其传递给我的一种保存方法。这里我需要特定图像的缩略图

到目前为止,我尝试的是添加包Install-Package System.Drawing.Common -Version 4.5.1

并创建了转换图像的方法

public string ErrMessage;

public bool ThumbnailCallback()
{
return false;
}
public Image GetReducedImage(int Width, int Height, Image ResourceImage)
{
try
{
Image ReducedImage;

Image.GetThumbnailImageAbort callb = new Image.GetThumbnailImageAbort(ThumbnailCallback);

ReducedImage = ResourceImage.GetThumbnailImage(Width, Height, callb, IntPtr.Zero);

return ReducedImage;
}
catch (Exception e)
{
ErrMessage = e.Message;
return null;
}
}

但是我创建的方法接受 Image 类型,所以这里有点困惑,不知道我们如何使用 byte[] 做到这一点。另外,我没有从 IFileForm 获取图像本地路径,因此我也无法直接给出路径。

有人可以帮我解决这个问题吗?

最佳答案

终于找到答案了

已安装System.Drawing.Common -版本4.5.1

打开包管理器并运行以下代码来安装包

Install-Package System.Drawing.Common -Version 5.0.2

然后使用以下代码:

using System.Drawing;

var stream = ProductImage.OpenReadStream();

var newImage = GetReducedImage(32,32,stream);
newImage.Save("path+filename");

public Image GetReducedImage(int width, int height, Stream resourceImage)
{
try
{
var image = Image.FromStream(resourceImage);
var thumb = image.GetThumbnailImage(width, height, () => false, IntPtr.Zero);

return thumb;
}
catch (Exception e)
{
return null;
}
}

关于c# - 如何在.net core中创建缩略图?使用 IFormFile 的帮助,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54075745/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com