81

我正在努力上传该图像的缩略图副本并将其保存在缩略图文件夹中。

我正在使用以下链接:

http://weblogs.asp.net/markmcdonnell/archive/2008/03/09/resize-image-before-uploading-to-server.aspx

newBMP.Save(directory + "tn_" + filename);   

导致异常“GDI+ 中发生一般错误。”

我试图授予文件夹权限,还尝试在保存时使用新的单独 bmp 对象。

编辑:

    protected void ResizeAndSave(PropBannerImage objPropBannerImage)
    {
        // Create a bitmap of the content of the fileUpload control in memory
        Bitmap originalBMP = new Bitmap(fuImage.FileContent);

        // Calculate the new image dimensions
        int origWidth = originalBMP.Width;
        int origHeight = originalBMP.Height;
        int sngRatio = origWidth / origHeight;
        int thumbWidth = 100;
        int thumbHeight = thumbWidth / sngRatio;

        int bannerWidth = 100;
        int bannerHeight = bannerWidth / sngRatio;

        // Create a new bitmap which will hold the previous resized bitmap
        Bitmap thumbBMP = new Bitmap(originalBMP, thumbWidth, thumbHeight);
        Bitmap bannerBMP = new Bitmap(originalBMP, bannerWidth, bannerHeight);

        // Create a graphic based on the new bitmap
        Graphics oGraphics = Graphics.FromImage(thumbBMP);
        // Set the properties for the new graphic file
        oGraphics.SmoothingMode = SmoothingMode.AntiAlias; oGraphics.InterpolationMode = InterpolationMode.HighQualityBicubic;

        // Draw the new graphic based on the resized bitmap
        oGraphics.DrawImage(originalBMP, 0, 0, thumbWidth, thumbHeight);

        Bitmap newBitmap = new Bitmap(thumbBMP);
        thumbBMP.Dispose();
        thumbBMP = null;

        // Save the new graphic file to the server
        newBitmap.Save("~/image/thumbs/" + "t" + objPropBannerImage.ImageId, ImageFormat.Jpeg);

        oGraphics = Graphics.FromImage(bannerBMP);
        // Set the properties for the new graphic file
        oGraphics.SmoothingMode = SmoothingMode.AntiAlias; oGraphics.InterpolationMode = InterpolationMode.HighQualityBicubic;

        // Draw the new graphic based on the resized bitmap
        oGraphics.DrawImage(originalBMP, 0, 0, bannerWidth, bannerHeight);
        // Save the new graphic file to the server
        bannerBMP.Save("~/image/" + objPropBannerImage.ImageId + ".jpg");


        // Once finished with the bitmap objects, we deallocate them.
        originalBMP.Dispose();

        bannerBMP.Dispose();
        oGraphics.Dispose();
    }
4

18 回答 18

109

从文件构造位图对象或图像对象时,文件在对象的生命周期内保持锁定状态。因此,您无法更改图像并将其保存回其原始文件。 http://support.microsoft.com/?id=814675

GDI+、JPEG 图像到 MemoryStream 中发生一般错误

Image.Save(..) 抛出 GDI+ 异常,因为内存流已关闭

http://alperguc.blogspot.in/2008/11/c-generic-error-occurred-in-gdi.html

编辑:
只是从记忆中写...

保存到“中间”内存流,应该可以

例如试试这个 - 替换

    Bitmap newBitmap = new Bitmap(thumbBMP);
    thumbBMP.Dispose();
    thumbBMP = null;
    newBitmap.Save("~/image/thumbs/" + "t" + objPropBannerImage.ImageId, ImageFormat.Jpeg);

有类似的东西:

string outputFileName = "...";
using (MemoryStream memory = new MemoryStream())
{
    using (FileStream fs = new FileStream(outputFileName, FileMode.Create, FileAccess.ReadWrite))
    {
        thumbBMP.Save(memory, ImageFormat.Jpeg);
        byte[] bytes = memory.ToArray();
        fs.Write(bytes, 0, bytes.Length);
    }
}
于 2013-04-07T13:26:07.357 回答
60

如果您传递的路径Bitmap.Save()无效(文件夹不存在等),则会显示此错误消息。

于 2014-05-16T13:06:09.137 回答
16
    // Once finished with the bitmap objects, we deallocate them.
    originalBMP.Dispose();

    bannerBMP.Dispose();
    oGraphics.Dispose();

这是一种你迟早会后悔的编程风格。早点敲门,你忘了一个。您没有处理newBitmap。在垃圾收集器运行之前,它会一直锁定文件。如果它没有运行,那么你第二次尝试保存到同一个文件时,你会得到 klaboom。GDI+ 异常太糟糕了,无法给出良好的诊断结果,因此会引起严重的头痛。除了提到这个错误的数千个谷歌帖子之外。

总是喜欢使用using语句。即使代码抛出异常,它也永远不会忘记处置对象。

using (var newBitmap = new Bitmap(thumbBMP)) {
    newBitmap.Save("~/image/thumbs/" + "t" + objPropBannerImage.ImageId, ImageFormat.Jpeg);
}

尽管还不清楚为什么要创建新的位图,但保存 thumbBMP 应该已经足够好了。Anyhoo,用爱给你剩下的一次性物品一样的东西。

于 2013-04-07T14:04:51.917 回答
9

在我的情况下,位图图像文件已经存在于系统驱动器中,所以我的应用程序抛出了错误"A Generic error occurred in GDI+"

  1. 验证目标文件夹是否存在
  2. 确认目标文件夹中没有同名文件
于 2014-08-14T07:56:28.200 回答
6

检查保存图像的文件夹的权限右键单击文件夹,然后执行:

属性 > 安全 > 编辑 > 添加 - 选择“所有人”并选中允许“完全控制”

于 2015-12-03T11:52:32.337 回答
5

我遇到了同样的问题在使用 MVC 应用程序时在 GDI+ 中保存时发生一般错误,我收到此错误是因为我写了错误的路径来保存图像,我更正了保存路径,它对我来说很好。

img1.Save(Server.MapPath("/Upload/test.png", System.Drawing.Imaging.ImageFormat.Png);


--Above code need one change, as you need to put close brackets on Server.MapPath() method after writing its param.

像这样-

img1.Save(Server.MapPath("/Upload/test.png"), System.Drawing.Imaging.ImageFormat.Png);
于 2016-01-14T07:21:21.137 回答
4

由于以下几点而发生 GDI+ 异常

  1. 文件夹访问问题
  2. 缺少图像的属性

如果文件夹问题 - 请提供对应用程序的访问如果缺少属性,则使用以下代码

代码 1

using (Bitmap bmp = new Bitmap(webStream))
{
     using (Bitmap newImage = new Bitmap(bmp))
     {
         newImage.Save("c:\temp\test.jpg", ImageFormat.Jpeg);
     }
}

代码 2

using (Bitmap bmp = new Bitmap(webStream))
{

     using (Bitmap newImage = new Bitmap(bmp))
     {
        newImage.SetResolution(bmp.HorizontalResolution, bmp.VerticalResolution);
        Rectangle lockedRect = new Rectangle(0, 0, bmp.Width, bmp.Height);
        BitmapData bmpData = newImage.LockBits(lockedRect, ImageLockMode.ReadWrite, bmp.PixelFormat);
        bmpData.PixelFormat = bmp.PixelFormat;
        newImage.UnlockBits(bmpData);
        using (Graphics gr = Graphics.FromImage(newImage))
         {
             gr.SmoothingMode = SmoothingMode.HighQuality;
             gr.InterpolationMode = InterpolationMode.HighQualityBicubic;
             gr.PixelOffsetMode = PixelOffsetMode.HighQuality;
         }

         foreach (var item in bmp.PropertyItems)
         {
             newImage.SetPropertyItem(item);
         }
         newImage.Save("c:\temp\test.jpg", ImageFormat.Jpeg);
    }
}

代码 1 和代码 2 的区别

代码 - 1:它只会创建图像并可以在普通图像查看器上打开它

  • 图像无法在 Photoshop 中打开
  • 图像大小将翻倍

Code - 2 :在图像编辑工具中打开图像使用代码

通过使用代码 1,它只创建图像但不分配图像标记。

于 2019-11-27T12:06:34.827 回答
3

我总是检查/测试这些:

  • 路径 + 文件名是否包含给定文件系统的非法字符?
  • 文件是否已经存在?(坏的)
  • 路径是否已经存在?(好的)
  • 如果路径是相对的:我是否希望它在正确的父目录中(主要是bin/Debug;-))?
  • 程序的路径是否可写,它以哪个用户运行?(这里的服务可能很棘手!)
  • 完整路径真的,真的不包含非法字符吗?(一些 unicode 字符几乎不可见)

Bitmap.Save()除了这个列表,我从来没有遇到过任何问题。

于 2017-03-21T04:40:25.087 回答
2

我有一个不同的问题,但有同样的例外。

简而言之:

确保在调用之前没有释放Bitmap' 对象。Stream.Save

全文:

有一个方法返回一个对象,从 a以下列方式Bitmap构建:MemoryStream

private Bitmap getImage(byte[] imageBinaryData){
    .
    .
    .
    Bitmap image;
    using (var stream = new MemoryStream(imageBinaryData))
    {
        image = new Bitmap(stream);
    }
    return image;
}

然后有人使用返回的图像将其保存为文件

image.Save(path);

问题是在尝试保存图像时原始流已经被释放,抛出 GDI+ 异常。

解决此问题的方法是在Bitmap不处理流本身但返回的Bitmap对象的情况下返回 。

private Bitmap getImage(byte[] imageBinaryData){
   .
   .
   .
   Bitmap image;
   var stream = new MemoryStream(imageBinaryData))
   image = new Bitmap(stream);

   return image;
}

然后:

using (var image = getImage(binData))
{
   image.Save(path);
}
于 2018-10-08T09:28:24.493 回答
1

我使用 FileStream 让它工作,从这些
http://alperguc.blogspot.in/2008/11/c-generic-error-occurred-in-gdi.html http://csharpdotnetfreak.blogspot.com/2010/获得帮助02/resize-image-upload-ms-sql-database.html

System.Drawing.Image imageToBeResized = System.Drawing.Image.FromStream(fuImage.PostedFile.InputStream);
        int imageHeight = imageToBeResized.Height;
        int imageWidth = imageToBeResized.Width;
        int maxHeight = 240;
        int maxWidth = 320;
        imageHeight = (imageHeight * maxWidth) / imageWidth;
        imageWidth = maxWidth;

        if (imageHeight > maxHeight)
        {
            imageWidth = (imageWidth * maxHeight) / imageHeight;
            imageHeight = maxHeight;
        }

        Bitmap bitmap = new Bitmap(imageToBeResized, imageWidth, imageHeight);
        System.IO.MemoryStream stream = new MemoryStream();
        bitmap.Save(stream, System.Drawing.Imaging.ImageFormat.Jpeg);
        stream.Position = 0;
        byte[] image = new byte[stream.Length + 1];
        stream.Read(image, 0, image.Length);
        System.IO.FileStream fs
= new System.IO.FileStream(Server.MapPath("~/image/a.jpg"), System.IO.FileMode.Create
, System.IO.FileAccess.ReadWrite);
            fs.Write(image, 0, image.Length);
于 2013-04-07T14:53:18.567 回答
1

对我来说,这是一个许可问题。有人删除了运行应用程序的用户帐户文件夹的写入权限。

于 2014-11-17T09:18:34.793 回答
0

在硬盘上创建文件夹路径图像/拇指 => 问题已解决!

于 2014-07-24T16:50:21.173 回答
0
    I used below logic while saving a .png format. This is to ensure the file is already existing or not.. if exist then saving it by adding 1 in the filename

Bitmap btImage = new Bitmap("D:\\Oldfoldername\\filename.png");
    string path="D:\\Newfoldername\\filename.png";
            int Count=0;
                if (System.IO.File.Exists(path))
                {
                    do
                    {
                        path = "D:\\Newfoldername\\filename"+"_"+ ++Count + ".png";                    
                    } while (System.IO.File.Exists(path));
                }

                btImage.Save(path, System.Drawing.Imaging.ImageFormat.Png);
于 2016-06-16T13:52:29.187 回答
0

我在尝试将 Tiff 图像转换为 Jpeg 时遇到了这个错误。对我来说,问题源于 tiff 尺寸太大。任何高达大约 62000 像素的像素都可以,超过这个尺寸的任何像素都会产生错误。

于 2016-10-20T08:59:04.793 回答
0

对我来说,这是保存图像时的路径问题。

int count = Directory.EnumerateFiles(System.Web.HttpContext.Current.Server.MapPath("~/images/savedimages"), "*").Count();

var img = Base64ToImage(imgRaw);

string path = "images/savedimages/upImages" + (count + 1) + ".png";

img.Save(Path.Combine(System.Web.HttpContext.Current.Server.MapPath(path)));

return path;

所以我通过添加以下正斜杠来修复它

String path = "images/savedimages....

应该

String path = "/images/savedimages....

希望能帮助任何卡住的人!

于 2018-01-10T16:46:37.497 回答
0

来自 msdn:public void Save (string filename);这让我很惊讶,因为我们不仅要传递文件名,还必须传递文件名和路径,例如:MyDirectory/MyImage.jpeg,这里MyImage.jpeg实际上还不存在,但我们的文件将使用这个名称保存.

这里的另一个重要点是,如果您Save()在 Web 应用程序中使用,则Server.MapPath()与它一起使用它基本上只是返回传入的虚拟路径的物理路径。类似于:image.Save(Server.MapPath("~/images/im111.jpeg"));

于 2019-03-29T18:57:20.310 回答
0

我使用这个解决方案

int G = 0;

private void toolStripMenuItem17_Click(object sender, EventArgs e)
{
  Directory.CreateDirectory("picture");// هذه العملية للرسم بدون ان يحذف بقية الرسومات
  G = G + 1;
  FormScreen();
  memoryImage1.Save("picture\\picture" + G.ToString() + ".jpg");
  pictureBox1.Image = Image.FromFile("picture\\picture" + G.ToString() + ".jpg");
}
于 2020-06-23T15:40:46.747 回答
0

下面的代码解决了我的问题

pictureBox1.Image=myImage;
  
Bitmap bmp = new Bitmap(pictureBox1.Image);
bmp.Save("C:\\Users/super/Desktop/robin.jpg");     
于 2021-06-14T21:31:39.940 回答