A generic error occurred in GDI+ when resizing ima

2019-08-12 08:08发布

问题:

I am using ImageProcessor to process images in my website.

I have this resize function:

 public Image ResizePhoto6version(Image img, int width, int height)
    {
        using (var ms = new MemoryStream())
        {
            using (var imgf = new ImageFactory(false))
            {
                imgf.Load(img)
                    .Resize(new ResizeLayer(new Size(width, height), ResizeMode.Max))
                    .Save(ms);

                return Bitmap.FromStream(ms);
            }
        }
    }

In the webservice, I run this code:

MemoryStream ytSmallStream = new MemoryStream();
MemoryStream ytMediumStream = new MemoryStream();
System.Drawing.Image ytSmallThumb = null;
System.Drawing.Image ytMediumThumb = null;

ytSmallThumb.Save(ytSmallStream, ImageFormat.Jpeg);
ytSmallStream.Position = 0;

ytMediumThumb.Save(ytMediumStream, ImageFormat.Jpeg);
ytMediumStream.Position = 0;

I get an exception when it reached the Save function ytSmallThumb.Save():

A generic error occurred in GDI+

The image is returned correctly from ResizeThumbnailToSmall function and the Stream has information of the image with the right size.