C # Image Compression Algorithm

Source: Internet
Author: User
///   <Summary>      ///  Zookeeper porn  ///   </Summary>      ///   <Param name = "filestream">  Batch stream  </Param>      ///   <Param name = "quality">  The larger the value is, the higher the quality is.  </Param>      ///  <Returns> </returns>      Private   Byte [] Compressionimage (Stream filestream, Long  Quality ){  Using (System. Drawing. Image IMG = System. Drawing. image. fromstream (filestream )){  Using (Bitmap bitmap = New  Bitmap (IMG) {imagecodecinfo codecinfo = Getencoder (IMG. rawformat); system. Drawing. imaging. encoder myencoder =System. Drawing. imaging. encoder. Quality; encoderparameters myencoderparameters = New Encoderparameters ( 1  ); Encoderparameter myencoderparameter = New  Encoderparameter (myencoder, quality); myencoderparameters. Param [  0 ] = Myencoderparameter;  Using (Memorystream MS = New Memorystream () {bitmap. Save (MS, codecinfo, myencoderparameters); myencoderparameters. Dispose (); myencoderparameter. Dispose ();  Return  Ms. toarray () ;}}}use: compressionimage (stream,  0l ) //  The minimum quality is 1 MB. The JPG size can be about KB. 

 

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.