Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 170497
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T12:49:08+00:00 2026-05-11T12:49:08+00:00

I have very large images (jpg) and i want to write a csharp program

  • 0

I have very large images (jpg) and i want to write a csharp program to loop through the files and reduce the size of each image by 75%.

I tried this:

Image thumbNail = image.GetThumbnailImage(800, 600, null, new IntPtr()); 

but the file size is still very large.

Is there anyway to create thumbnails and have the filesize be much smaller?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. 2026-05-11T12:49:08+00:00Added an answer on May 11, 2026 at 12:49 pm
    private void CompressAndSaveImage(Image img, string fileName,          long quality) {     EncoderParameters parameters = new EncoderParameters(1);     parameters.Param[0] = new EncoderParameter(Encoder.Quality, quality);     img.Save(fileName, GetCodecInfo('image/jpeg'), parameters); }  private static ImageCodecInfo GetCodecInfo(string mimeType) {     foreach (ImageCodecInfo encoder in ImageCodecInfo.GetImageEncoders())         if (encoder.MimeType == mimeType)             return encoder;     throw new ArgumentOutOfRangeException(         string.Format(''{0}' not supported', mimeType)); } 

    Usage:

    Image myImg = Image.FromFile(@'C:\Test.jpg'); CompressAndSaveImage(myImg, @'C:\Test2.jpg', 10); 

    That will compress Test.jpg with a quality of 10 and save it as Test2.jpg.

    EDIT: Might be better as an extension method:

    private static void SaveCompressed(this Image img, string fileName,          long quality) {     EncoderParameters parameters = new EncoderParameters(1);     parameters.Param[0] = new EncoderParameter(Encoder.Quality, quality);     img.Save(fileName, GetCodecInfo('image/jpeg'), parameters); } 

    Usage:

    Image myImg = Image.FromFile(@'C:\Test.jpg'); myImg.SaveCompressed(@'C:\Test2.jpg', 10); 
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

We have some very large data files (5 gig to 1TB) where we need
I have a very large C project with many separate C files and headers
I have a very large image and I only want to display a section
I have a Camera class that produces very large images at a high FPS
I have a very large background image ~400k. If I reduce the quality in
I have a very large database of jpeg images, about 2 million. I would
I want to create a Gallery that displays a very large number of images.
I have some large images in a grouped UITableView. There's 1 row in each
I have a very large image that I would like to show a 200x200px
I have a website that requires a very large background image. The page loads

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.