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?
Try this:
image.save("C:/img.jpg", ImageFormat.Jpeg);
According to URL pattern definition, you should use '/' insted of '\' in resource location path, so:
image.save(@"C:/img.jpg", ImageFormat.Jpeg);
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With