我在Asp.net Core项目中将SixLabors的ImageSharp与ImageSharp.Web一起使用。图像大小调整可与存储在磁盘上的图像的查询字符串配合使用。示例:
/myimage.jpg?width=10&height=10&rmode=max
但是,如果从流中提供图像,则ImageSharp似乎不会调整图像的大小。这是一个示例中间件,如果满足某些条件,我将使用该中间件从安全文件夹中发送图像:
public class ExposeSecureImageMiddleware
{
public ExposeSecureImageMiddleware(RequestDelegate next, IFolders folders)
{
Next = next;
Folders = folders;
}
public async Task Invoke(HttpContext httpContext)
{
if (meets_my_criteria)
await SendFile(httpContext);
else
await Next(httpContext);
}
async Task SendFile(HttpContext httpContext)
{
var fs = File.OpenRead("c:/path/to/secure/file.jpg");
var bytes = new byte[fs.Length];
await fs.ReadAsync(bytes, 0, bytes.Length);
httpContext.Response.Headers.ContentLength = bytes.Length;
httpContext.Response.ContentType = "image/jpeg";
await httpContext.Response.Body.WriteAsync(bytes, 0, bytes.Length);
}
}
我在Startup.cs的中间件之前注册了ImageSharp,以便它有机会拦截响应:
Startup.cs
app.UseImageSharp();
app.UseMiddleware<ExposeSecureImageMiddleware>();
当路径不在磁盘上时,如何使ImageSharp根据查询字符串参数调整图像大小?
答案 0 :(得分:0)
ImageSharp中间件仅拦截具有识别命令的图像请求。
由于您已经在Startup中的ImageSharp中间件之后注册了中间件,所以ImageSharp中间件已经在您的请求被拦截之前处理了请求。
有两种方法可以满足您的要求:
IImageProvider
,以处理图像分辨率以限制您的条件。