如何在 .net 核心中创建缩略图?使用 IFormFile 的帮助
How to create thumbnail image in .net core? Using the help of IFormFile
我需要从原始图像创建缩略图,并且需要将两张图像都保存在本地文件夹中。
我正在使用 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[] 并将其传递给我的一种保存方法。
在这里我需要特定图像的缩略图
到目前为止我尝试的是添加 package 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 -Version 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;
}
}
我需要从原始图像创建缩略图,并且需要将两张图像都保存在本地文件夹中。 我正在使用 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[] 并将其传递给我的一种保存方法。 在这里我需要特定图像的缩略图
到目前为止我尝试的是添加 package 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 -Version 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;
}
}