A generic error occurred in GDI+.

wangsiya_xiaoshan 2012-06-05 11:53:09

using System;
using System.Drawing;
using System.Drawing.Imaging;
using System.Drawing.Drawing2D;
using System.Drawing.Text;
using System.IO;
using System.Net;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;

public partial class _Default : System.Web.UI.Page
{
public string company="";
public string nob="";
public float size = 12;
public string changetype;
public string paths;
protected void Page_Load(object sender, EventArgs e)
{
paths = Session["fname"].ToString();
company = Session["con"].ToString();
nob = Session["no"].ToString() ;
changetype = Session["ss"].ToString();
size = float.Parse(changetype);
draw();
}

public void draw()
{
Bitmap bitMapImage = new System.Drawing.Bitmap(Server.MapPath("banner.jpg"));
Graphics graphicImage = Graphics.FromImage(bitMapImage);
graphicImage.SmoothingMode = SmoothingMode.HighQuality;
Bitmap logo = new System.Drawing.Bitmap(Server.MapPath(paths));
graphicImage.DrawImage(logo, new Rectangle(10, 15, 80, 80 * logo.Height / logo.Width));
Font fontat = new Font("黑体", size, FontStyle.Bold);
graphicImage.DrawString(company, fontat, Brushes.White, new Rectangle(105, 15, 220, 35));
graphicImage.DrawString(nob, fontat, Brushes.White, new Point(105, 50));
Response.ContentType = "image/jpeg";
Response.AddHeader("Content-Disposition", "attachment;filename=fur1.jpg");
bitMapImage.Save(Response.OutputStream, ImageFormat.Jpeg);
graphicImage.Dispose();
bitMapImage.Dispose();
}
}


运行后出现
A generic error occurred in GDI+.
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

Exception Details: System.Runtime.InteropServices.ExternalException: A generic error occurred in GDI+.
...全文
158 1 打赏 收藏 转发到动态 举报
写回复
用AI写文章
1 条回复
切换为时间正序
请发表友善的回复…
发表回复
孟子E章 2012-06-05
  • 打赏
  • 举报
回复
这些代码看不出问题
一般情况下,要写成
Server.MapPath("~/banner.jpg")
指明具体的位置

另外,注意不要同时处理同一个文件

62,046

社区成员

发帖
与我相关
我的任务
社区描述
.NET技术交流专区
javascript云原生 企业社区
社区管理员
  • ASP.NET
  • .Net开发者社区
  • R小R
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告

.NET 社区是一个围绕开源 .NET 的开放、热情、创新、包容的技术社区。社区致力于为广大 .NET 爱好者提供一个良好的知识共享、协同互助的 .NET 技术交流环境。我们尊重不同意见,支持健康理性的辩论和互动,反对歧视和攻击。

希望和大家一起共同营造一个活跃、友好的社区氛围。

试试用AI创作助手写篇文章吧