ASP.NET输出PNG图片时出现GDI+一般性错误的解决方法
程序员文章站
2023-11-18 19:39:10
以下是原文: code: 复制代码 代码如下:response.clear(); response.contenttype = "image/png"; img.save(...
以下是原文:
code:
response.clear();
response.contenttype = "image/png";
img.save(response.outputstream, chartformat.png);
竟然出现异常,是gdi+一般性错误。但是如果格式是
code:
response.contenttype = "image/jpeg";
就不会报错。
好在以前遇到过,改成
code:
response.contenttype = "image/png";
using (memorystream ms = new memorystream())
{
img.save(ms, chartformat.png);
response.outputstream.write(ms.getbuffer(), 0, (int)ms.length);
}
就可以输入png图片了。
这是由于response.outputstream这个流的无法往回读取造成的,也就是它的canseek属性
是false。png图像生成的时候不像jpeg,不是流式的,已经写入的就不再管了,而是需要往回
不断地写入结构数据。但是response流无法往回seek,所以直接用就不行了。改成一个可以
seek的memorystream,先生成好png图片,然后再输出到response流。
code:
复制代码 代码如下:
response.clear();
response.contenttype = "image/png";
img.save(response.outputstream, chartformat.png);
竟然出现异常,是gdi+一般性错误。但是如果格式是
code:
复制代码 代码如下:
response.contenttype = "image/jpeg";
就不会报错。
好在以前遇到过,改成
code:
复制代码 代码如下:
response.contenttype = "image/png";
using (memorystream ms = new memorystream())
{
img.save(ms, chartformat.png);
response.outputstream.write(ms.getbuffer(), 0, (int)ms.length);
}
就可以输入png图片了。
这是由于response.outputstream这个流的无法往回读取造成的,也就是它的canseek属性
是false。png图像生成的时候不像jpeg,不是流式的,已经写入的就不再管了,而是需要往回
不断地写入结构数据。但是response流无法往回seek,所以直接用就不行了。改成一个可以
seek的memorystream,先生成好png图片,然后再输出到response流。
上一篇: Python3 多进程编程 - 学习笔记
下一篇: 一文看懂PHP进程管理器php-fpm