我正在使用以下代码将文本转换为jpg。
context.Response.ContentType = "image/jpeg"; SaveAsJpeg(bitmap, context.Response.OutputStream, (long)100);
当我在互联网上显示页面时,图像表面看起来很好。但是,当我右键单击保存图像或将页面保存为时,我将ashx作为文件扩展名。
如何将 jpg 作为文件扩展名?
答案 0 :(得分:1)
context.Response.AddHeader("Content-Disposition", "attachment; filename=your-name-here.jpg");
这告诉浏览器该文件应保存为什么名称。