Click here to Skip to main content
15,886,807 members
Articles / Mobile Apps / Windows Mobile

WSQ to BMP converter

Rate me:
Please Sign up or sign in to vote.
4.93/5 (12 votes)
7 Feb 2013CPOL 67.3K   3.3K   15  
A WSQ to BMP converter.
using System;
using System.Collections.Generic;
using System.Text;
using System.IO;
using System.Drawing;

using Wsq2Bmp;

namespace test
{
    class Program
    {
        static void Main(string[] args)
        {
            FileStream fs = File.OpenRead(@"C:\sample_image.wsq");
            byte[] fileData = new byte[fs.Length];
            fs.Read(fileData, 0, fileData.Length);

            WsqDecoder decoder = new WsqDecoder();
            Bitmap bmp = decoder.Decode(fileData);
            bmp.Save(@"C:\sample_image.bmp");            
        }
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior)
Serbia Serbia
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions