Does your company or startup need an expert? If so, write to me to talk about possibilities of professional cooperation.
PROGRAMMING on-line course is approaching! Write to me if you are interested in free early access.

MARCIN.com

Marcin Jamro, PhD, DSc

How to set JPEG quality with System.Drawing?

C#  |  .NET  |  ASP.NET

If you want to specify the JPEG quality, you can take a look at the following code:

ImageCodecInfo codec = ImageCodecInfo.GetImageEncoders()
    .First(e => e.FormatID == ImageFormat.Jpeg.Guid);
EncoderParameters encoderParameters = new(1);
encoderParameters.Param[0] = new(Encoder.Quality, 90L);

using Bitmap bitmap = new(/* Width */, /* Height */);
using Graphics graphics = Graphics.FromImage(bitmap);
/* Drawing */
bitmap.Save(targetImagePath, codec, encoderParameters);

The full working example is provided below:

using System.Drawing;
using System.Drawing.Imaging;

ImageCodecInfo codec = ImageCodecInfo.GetImageEncoders()
    .First(e => e.FormatID == ImageFormat.Jpeg.Guid);
EncoderParameters encoderParameters = new(1);
encoderParameters.Param[0] = new(Encoder.Quality, 90L);

const int width = 1920;
const int height = 1080;
using Bitmap bitmap = new(width, height);
using Graphics graphics = Graphics.FromImage(bitmap);
int yMiddle = height / 2;
graphics.FillRectangle(Brushes.White, 100, 100, width - 200, yMiddle - 100);
graphics.FillRectangle(Brushes.Red, 100, yMiddle, width - 200, yMiddle - 100);
bitmap.Save("image.jpg", codec, encoderParameters);

Of course, you should not forget to install the System.Drawing.Common package from the NuGet package manager.

The content, including any part of code, is presented without warranty, either express or implied. The author cannot be held liable for any damages caused or alleged to have been caused directly or indirectly by any content shown on this website.

Hello, I am Marcin

Reliable entrepreneur with 10+ years of companies operation, such as CEO at a few IT companies. I was an author of a few software & hardware products, still open to new ideas & cooperation.

Helpful expert with 10+ years of experience, together with PhD and DSc in Computer Science. I was an author of books and publications, as well as an expert in international projects.

Experienced developer with 10+ years of development and 100+ completed projects. I worked on various complex international projects, e.g. at Microsoft in USA and as CTO at a few companies. I have MCP, MCTS and MCPD certificates.

You can read more about me in my short bio. I am waiting for contact at [email protected], as well as at my Facebook and LinkedIn profiles.

Books

I am an author of a few books and numerous publications, also in high-quality international scientific journals.

If you want to learn data structures and algorithms in the context of C#, let's take a look at my newest book. It is the second edition of C# Data Structures and Algorithms. You can buy it here.

Projects

Do you like traveling? If so, discover an amazing world with local guides, right here and right now at: https://camaica.com

Do you follow your favorite creators? If so, check it out what products they recommend and buy them at: https://refspace.com

Travels

I love travels, learning new cultures and regions, meeting outstanding people, as well as taking pictures of beautiful places. Take a look at my travel diary.