Lossless compression Picture

Source: Internet
Author: User

<summary>
Lossless compression picture According to width and height
</summary>
<param name= "SFile" > Original picture </param>
<param name= "Dfile" > Save location after compression </param>
<param name= "Dheight" > Height </param>
<param name= "Dwidth" ></param>
<param name= "Flag" > Compression quality 1-100</param>
<returns></returns>
public static bool Getpicbywh (string sFile, string dfile, int dheight, int dwidth, int flag)
{
System.Drawing.Image ISource = System.Drawing.Image.FromFile (sFile);
ImageFormat Tformat = Isource.rawformat;
int SW = 0, SH = 0;
Scale by scaling
Size tem_size = new Size (isource.width, isource.height);

if (tem_size. Width > Dheight | | Tem_size. Width > Dwidth)//change * * to C # or manipulate symbols
{
if (tem_size. Width * dheight) > (tem_size. Height * dwidth))
{
SW = Dwidth;
SH = (Dwidth * tem_size. Height)/tem_size. Width;
}
Else
{
SH = Dheight;
SW = (tem_size. Width * dheight)/tem_size. Height;
}
}

Else
{
SW = Tem_size. Width;
SH = Tem_size. Height;
}
Bitmap ob = new Bitmap (dwidth, dheight);
Graphics g = graphics.fromimage (OB);
G.clear (Color.whitesmoke);
g.compositingquality = compositingquality.highquality;
G.smoothingmode = smoothingmode.highquality;
G.interpolationmode = Interpolationmode.highqualitybicubic;
G.drawimage (ISource, New Rectangle ((DWIDTH-SW)/2, (DHEIGHT-SH)/2, SW, SH), 0, 0, isource.width, Isource.height, Gr Aphicsunit.pixel);
G.dispose ();
The following code sets the compression quality when the picture is saved
EncoderParameters EP = new EncoderParameters ();
long[] qy = new Long[1];
Qy[0] = flag;//Set the scale of the compression 1-100
Encoderparameter Eparam = new Encoderparameter (System.Drawing.Imaging.Encoder.Quality, QY);
Ep. Param[0] = Eparam;
Try
{
imagecodecinfo[] Arrayici = Imagecodecinfo.getimageencoders ();
ImageCodecInfo jpegiciinfo = null;
for (int x = 0; x < arrayici.length; × x + +)
{
if (Arrayici[x]. Formatdescription.equals ("JPEG"))
{
Jpegiciinfo = Arrayici[x];
Break
}
}

if (jpegiciinfo! = null)
{
Ob. Save (Dfile, Jpegiciinfo, EP);//dfile is the new path after compression
}
Else
{
Ob. Save (Dfile, Tformat);
}
return true;
}
Catch
{
return false;
}
Finally
{
Isource.dispose ();
Ob. Dispose ();
}
}

Lossless compression Picture

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.