gpt4 book ai didi

c# - Response.WriteFile -- 写出一个字节流

转载 作者:太空狗 更新时间:2023-10-29 19:59:02 24 4
gpt4 key购买 nike

是否可以使用 Response.Write/WriteFile 从动态创建的位图中写入 http 响应流而不将图像保存到硬盘?

最佳答案

您可以使用 MemoryStream并将其分配给 Response.OutputStream ,或者在保存位图时直接使用 Response.OutputStream

this 上的文档中有一个示例页面,尽管它只是将位图直接保存到输出流:

// Set the correct content type, so browser/client knows what you are sending
Response.ContentType = "image/jpeg";
Response.Clear();

Bitmap bmp = new Bitmap(width, height, PixelFormat.Format24bppRgb);
Graphics g = Graphics.FromImage(bmp);

bmp.Save(Response.OutputStream, ImageFormat.Jpeg);

关于c# - Response.WriteFile -- 写出一个字节流,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3763256/

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