В GDI+ произошла общая ошибка при сохранении изображения

Я прочитал ответ на тот же вопрос и сделал все, что просили сделать. Я также дал разрешение на запись в папку для текущего пользователя, как упоминалось в одном из предыдущих ответов, но все еще получаю эту ошибку. Поэтому, пожалуйста, кто-нибудь может дать мне конкретный ответ, что делать? Это мой код

    protected void Page_Load(object sender, EventArgs e)
{
    //get all the files in a directory
    string[] files = Directory.GetFiles(@"D:\Naved\BasicDotNet\Images");

    //combine them into one image
    System.Drawing.Bitmap stitchedImage = Combine(files);

    //save the new image
    stitchedImage.Save(@"D:\Naved\BasicDotNet\Images", System.Drawing.Imaging.ImageFormat.Jpeg);//Error:-A generic error occurred in GDI+

}
public static System.Drawing.Bitmap Combine(string[] files)
{
    //read all images into memory
    List<System.Drawing.Bitmap> images = new List<System.Drawing.Bitmap>();
    System.Drawing.Bitmap finalImage = null;

    try
    {
        int width = 0;
        int height = 0;

        foreach (string image in files)
        {
            //create a Bitmap from the file and add it to the list
            System.Drawing.Bitmap bitmap = new System.Drawing.Bitmap(image);

            //update the size of the final bitmap
            width += bitmap.Width;
            height = bitmap.Height > height ? bitmap.Height : height;

            images.Add(bitmap);
        }

        //create a bitmap to hold the combined image
        finalImage = new System.Drawing.Bitmap(width, height);

        //get a graphics object from the image so we can draw on it
        using (System.Drawing.Graphics g = System.Drawing.Graphics.FromImage(finalImage))
        {
            //set background color
            g.Clear(System.Drawing.Color.Black);

            //go through each image and draw it on the final image
            int offset = 0;
            foreach (System.Drawing.Bitmap image in images)
            {
                g.DrawImage(image,
                  new System.Drawing.Rectangle(offset, 0, image.Width, image.Height));
                offset += image.Width;
            }
        }

        return finalImage;
    }
    catch (Exception ex)
    {
        if (finalImage != null)
            finalImage.Dispose();

        throw ex;
    }
    finally
    {
        //clean up memory
        foreach (System.Drawing.Bitmap image in images)
        {
            image.Dispose();
        }
    }
}
}

2 ответа

Решение

Пытаться

stitchedImage.Save(@"D:\Naved\BasicDotNet\Images\stitchedImage.jpg", System.Drawing.Imaging.ImageFormat.Jpeg);

вместо

stitchedImage.Save(@"D:\Naved\BasicDotNet\Images", System.Drawing.Imaging.ImageFormat.Jpeg);

Первый аргумент Image.Save (String, ImageFormat) имя файла для сохранения, а не каталог для сохранения. Ранее вы сделали

string[] files = Directory.GetFiles(@"D:\Naved\BasicDotNet\Images");

Так @"D:\Naved\BasicDotNet\Images" должен быть каталогом, а не файлом.

(Между прочим, я предлагаю сохранить сшитое изображение в другой каталог; в противном случае каждый раз, когда вы запускаете свой код, вы будете сшивать предыдущий стежок вместе с предыдущим содержимым.)

stitchedImage.Save(@"D:\Naved\BasicDotNet\Images", System.Drawing.Imaging.ImageFormat.Jpeg); - you need to specify the file name here. I.e edit it to something like this:     `stitchedImage.Save(@"D:\Naved\BasicDotNet\Images\myjpeg.Jpeg", System.Drawing.Imaging.ImageFormat.Jpeg)`
Другие вопросы по тегам