Welcome to Dream.In.Code
Getting C# Help is Easy!

Join 132,319 C# Programmers for FREE! Get instant access to thousands of C# experts, tutorials, code snippets, and more! There are 1,097 people online right now. Registration is fast and FREE... Join Now!




Image Compression

 
Reply to this topicStart new topic

Image Compression, I would like to compress the image file (JPEG) using C# and Windows mo

kundhanashree
post 30 Sep, 2008 - 03:36 AM
Post #1


New D.I.C Head

*
Joined: 24 Sep, 2008
Posts: 1

using this code i am trying to compress 69Kb file into 12 Kb in C#. But i am unable to do this in Windows mobile. In Windows mobile ImageCodecInfo and EncoderParameters are not supporting.
CODE

string ImagePath = @"\\My Documents\\sampleimage.jpg";
            string newImagePath = @"\\My Documents\\CompressedImage.jpg";
            Bitmap  ImgTemp;
            ImgTemp = new Bitmap(ImagePath);
            SaveJPGWithCompressionSetting(ImgTemp, newImagePath, 10L);



// Get the desired Codec
private static ImageCodecInfo GetEncoderInfo(String mimeType)
        {
             int j;
            ImageCodecInfo[] encoders;
            encoders = ImageCodecInfo.GetImageEncoders();
            for (j = 0; j < encoders.Length; ++j)
            {
                if (encoders[j].MimeType == mimeType)
                    return encoders[j];
            }
             return null;
}


// Get the desired Encoder and Quality
private void SaveJPGWithCompressionSetting(Image image, string szFileName, long lCompression)
        {
            EncoderParameters eps = new EncoderParameters(1);
            eps.Param[0] = new EncoderParameter(System.Drawing.Imaging.Encoder.Quality, lCompression);
            ImageCodecInfo ici = GetEncoderInfo("image/jpeg");
            image.Save(szFileName, ici, eps);
}

User is offlineProfile CardPM

Go to the top of the page

Fast ReplyReply to this topicStart new topic
Time is now: 11/22/08 02:27AM

Live C# Help!

C# Tutorials

Reference Sheets

C# Snippets

Bye Bye Ads

Free DIC T-Shirt

T-Shirt Example

Related Sites

Monthly Drawing

Thumb Drive

Partners

Top Contributors

Top 10 Kudos This Month