7

I have got a bitmap i would like to save to disk, however i have only managed to save it in same directory as the program exe.

This is the only way i got it to work:

image.save("img.jpg", ImageFormat.Jpeg);

I would like to save it somewhere else on the disk regardless of where the program exe is. none of these works, i get: A generic error occurred in GDI+.

image.save("C:\\img.jpg", ImageFormat.Jpeg);
image.save(@"C:\\img.jpg", ImageFormat.Jpeg);

EDIT: btw is it possible to make folders too? something like this? (i get the same error as always..)

image.save("foldername/img.jpg", ImageFormat.Jpeg);

EDIT2: got it to save to a folder only if the folder allready exists. Could there be a permission thing? anything that needs to be imported?

2

4 Answers 4

6

Try this:

image.save("C:/img.jpg", ImageFormat.Jpeg);
Sign up to request clarification or add additional context in comments.

1 Comment

4

According to URL pattern definition, you should use '/' insted of '\' in resource location path, so:

image.save(@"C:/img.jpg", ImageFormat.Jpeg);

Comments

2

I had the same issue. The quick workaround was to manually create the directory and it worked like a champ:

string directory_where_you_want_to_save_file = "./subdir";
System.IO.Directory.CreateDirectory(pathString);

Comments

0

try this: image.Save(Application.StartupPath + "\img.jpg");

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.