2014/11/28– images into progressive JPEG

Source: Internet
Author: User

There are two ways to save JPEG files: They are baseline JPEG (standard) and progressive JPEG (progressive type). Both formats have the same size and image data, and their extensions are the same, and the only difference is the way they are displayed.

In addition, the size of the progressive image will not be much different from the basic picture size, and may sometimes be smaller than the basic picture. The disadvantage of progressive pictures is to eat the user's CPU and memory, but for the current computer, this picture is not what the calculation.

using(Image Source = Image.FromFile (@"D:\temp\test2.jpg") {ImageCodecInfo codec= Imagecodecinfo.getimageencoders (). First (c = C.mimetype = ="Image/jpeg"); EncoderParameters Parameters=NewEncoderParameters (3); Parameters. param[0] =NewEncoderparameter (System.Drawing.Imaging.Encoder.Quality,100L); Parameters. param[1] =NewEncoderparameter (System.Drawing.Imaging.Encoder.ScanMethod, (int) encodervalue.scanmethodinterlaced); Parameters. param[2] =NewEncoderparameter (System.Drawing.Imaging.Encoder.RenderMethod, (int) encodervalue.renderprogressive); Source. Save (@"D:\temp\saved.jpg", codec, parameters);}

2014/11/28– images into progressive JPEG

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.