GDI+ 中发生一般性错误。是 图片路径问题吗 本地一切正确 没错误

本地运行一切正常放到服务器上就错误是图片路劲问题吗大侠帮忙... 本地运行一切正常 放到服务器上 就错误 是图片路劲问题吗 大侠帮忙 展开
 我来答
匿名用户
2011-01-28
展开全部
你这样试试
//载入原始图片
Bitmap bmp = new Bitmap(Path);
Graphics graphics;
try
{
graphics = System.Drawing.Graphics.FromImage(bmp);
}
catch (Exception)
{
//对于indexed pixel format,抛出异常的特殊处理
Bitmap newBmp = new Bitmap(bmp.Width, bmp.Height);
graphics = System.Drawing.Graphics.FromImage(newBmp);
graphics.DrawImage(bmp,
new Rectangle(0, 0, newBmp.Width, newBmp.Height),
new Rectangle(0, 0, bmp.Width, bmp.Height),
GraphicsUnit.Pixel);
bmp = newBmp;
}
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式