I made a small C# app to create an image in .jpg format.
pictureBox.Image.Save(name,ImageFormat.Jpeg);
The image is succesfully created. I input an original pic, do some stuff with it and save it. The quality of this new pic however, is lower than that of the original.
Is there any way to set the desired quality?