gpt4 book ai didi

asp.net - MVC 如何将图像提供给响应流

转载 作者:行者123 更新时间:2023-12-01 10:09:42 25 4
gpt4 key购买 nike

<分区>

在我的 Controller 中,我检索了一个产品列表以及一个图像名称,然后将图像缩小到 View 所需的大小。图像现在在内存中,准备写入响应流。我知道客户端会为每个图像发送响应,但我不知道如何连接到它以提供图像。

查看代码:

    @foreach (var product in Model.Products)
{
@product.Name
<img src="@product.Thumbnail"/>
Priced From $@product.LowestPrice
}

Controller :

    model.Products =
DataContext.Products.Where(p => p.Category.Name
.Equals(id)).Select(m => new ProductListItem
{
Name = m.Name,
Thumbnail = ImageResizer.Resize(m.Image, 75, 100, <normally I put the output stream here>),
LowestPrice = SqlFunctions.StringConvert( m.PriceSet.Prices.Min(p =>p.Price1))
}
);

ImageResizer.Resize()签名在哪里

Resize(string imageName, int width, int height, Stream outputStream)

所以我认为我的问题应该是 - 我应该为图像名称输入什么以及我如何监听可以写入流的每个图像的请求?

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