`
louis_cuti
  • 浏览: 13000 次
  • 性别: Icon_minigender_1
  • 来自: 西安
社区版块
存档分类
最新评论

网上收集的GIF操作的三个类AnimatedGifEncoder,NeuQuant,LZWE(一)

    博客分类:
  • java
阅读更多

 

class LZWEncoder {

        private static final int EOF = -1;
        private int imgW,  imgH;
        private byte[] pixAry;
        private int initCodeSize;
        private int remaining;
        private int curPixel;

        // GIFCOMPR.C       - GIF Image compression routines
        //
        // Lempel-Ziv compression based on 'compress'.  GIF modifications by
        // David Rowley (mgardi@watdcsu.waterloo.edu)

        // General DEFINEs
        static final int BITS = 12;
        static final int HSIZE = 5003; // 80% occupancy

        // GIF Image compression - modified 'compress'
        //
        // Based on: compress.c - File compression ala IEEE Computer, June 1984.
        //
        // By Authors:  Spencer W. Thomas      (decvax!harpo!utah-cs!utah-gr!thomas)
        //              Jim McKie              (decvax!mcvax!jim)
        //              Steve Davies           (decvax!vax135!petsd!peora!srd)
        //              Ken Turkowski          (decvax!decwrl!turtlevax!ken)
        //              James A. Woods         (decvax!ihnp4!ames!jaw)
        //              Joe Orost              (decvax!vax135!petsd!joe)
        int n_bits; // number of bits/code
        int maxbits = BITS; // user settable max # bits/code
        int maxcode; // maximum code, given n_bits
        int maxmaxcode = 1 << BITS; // should NEVER generate this code
        int[] htab = new int[HSIZE];
        int[] codetab = new int[HSIZE];
        int hsize = HSIZE; // for dynamic table sizing
        int free_ent = 0; // first unused entry

        // block compression parameters -- after all codes are used up,
        // and compression rate changes, start over.
        boolean clear_flg = false;

        // Algorithm:  use open addressing double hashing (no chaining) on the
        // prefix code / next character combination.  We do a variant of Knuth's
        // algorithm D (vol. 3, sec. 6.4) along with G. Knott's relatively-prime
        // secondary probe.  Here, the modular division first probe is gives way
        // to a faster exclusive-or manipulation.  Also do block compression with
        // an adaptive reset, whereby the code table is cleared when the compression
        // ratio decreases, but after the table fills.  The variable-length output
        // codes are re-sized at this point, and a special CLEAR code is generated
        // for the decompressor.  Late addition:  construct the table according to
        // file size for noticeable speed improvement on small files.  Please direct
        // questions about this implementation to ames!jaw.
        int g_init_bits;
        int ClearCode;
        int EOFCode;

        // output
        //
        // Output the given code.
        // Inputs:
        //      code:   A n_bits-bit integer.  If == -1, then EOF.  This assumes
        //              that n_bits =< wordsize - 1.
        // Outputs:
        //      Outputs code to the file.
        // Assumptions:
        //      Chars are 8 bits long.
        // Algorithm:
        //      Maintain a BITS character long buffer (so that 8 codes will
        // fit in it exactly).  Use the VAX insv instruction to insert each
        // code in turn.  When the buffer fills up empty it and start over.
        int cur_accum = 0;
        int cur_bits = 0;
        int masks[] = {
            0x0000,
            0x0001,
            0x0003,
            0x0007,
            0x000F,
            0x001F,
            0x003F,
            0x007F,
            0x00FF,
            0x01FF,
            0x03FF,
            0x07FF,
            0x0FFF,
            0x1FFF,
            0x3FFF,
            0x7FFF,
            0xFFFF};

        // Number of characters so far in this 'packet'
        int a_count;

        // Define the storage for the packet accumulator
        byte[] accum = new byte[256];

        //----------------------------------------------------------------------------
        LZWEncoder(int width, int height, byte[] pixels, int color_depth) {
            imgW = width;
            imgH = height;
            pixAry = pixels;
            initCodeSize = Math.max(2, color_depth);
        }

        // Add a character to the end of the current packet, and if it is 254
        // characters, flush the packet to disk.
        void char_out(byte c, OutputStream outs) throws IOException {
            accum[a_count++] = c;
            if (a_count >= 254) {
                flush_char(outs);
            }
        }

        // Clear out the hash table

        // table clear for block compress
        void cl_block(OutputStream outs) throws IOException {
            cl_hash(hsize);
            free_ent = ClearCode + 2;
            clear_flg = true;

            output(ClearCode, outs);
        }

        // reset code table
        void cl_hash(int hsize) {
            for (int i = 0; i < hsize; ++i) {
                htab[i] = -1;
            }
        }

        void compress(int init_bits, OutputStream outs) throws IOException {
            int fcode;
            int i /* = 0 */;
            int c;
            int ent;
            int disp;
            int hsize_reg;
            int hshift;

            // Set up the globals:  g_init_bits - initial number of bits
            g_init_bits = init_bits;

            // Set up the necessary values
            clear_flg = false;
            n_bits = g_init_bits;
            maxcode = MAXCODE(n_bits);

            ClearCode = 1 << (init_bits - 1);
            EOFCode = ClearCode + 1;
            free_ent = ClearCode + 2;

            a_count = 0; // clear packet

            ent = nextPixel();

            hshift = 0;
            for (fcode = hsize; fcode < 65536; fcode *= 2) {
                ++hshift;
            }
            hshift = 8 - hshift; // set hash code range bound

            hsize_reg = hsize;
            cl_hash(hsize_reg); // clear hash table

            output(ClearCode, outs);

            outer_loop:
            while ((c = nextPixel()) != EOF) {
                fcode = (c << maxbits) + ent;
                i = (c << hshift) ^ ent; // xor hashing

                if (htab[i] == fcode) {
                    ent = codetab[i];
                    continue;
                } else if (htab[i] >= 0) // non-empty slot
                {
                    disp = hsize_reg - i; // secondary hash (after G. Knott)
                    if (i == 0) {
                        disp = 1;
                    }
                    do {
                        if ((i -= disp) < 0) {
                            i += hsize_reg;
                        }

                        if (htab[i] == fcode) {
                            ent = codetab[i];
                            continue outer_loop;
                        }
                    } while (htab[i] >= 0);
                }
                output(ent, outs);
                ent = c;
                if (free_ent < maxmaxcode) {
                    codetab[i] = free_ent++; // code -> hashtable
                    htab[i] = fcode;
                } else {
                    cl_block(outs);
                }
            }
            // Put out the final code.
            output(ent, outs);
            output(EOFCode, outs);
        }

        //----------------------------------------------------------------------------
        void encode(OutputStream os) throws IOException {
            os.write(initCodeSize); // write "initial code size" byte

            remaining = imgW * imgH; // reset navigation variables
            curPixel = 0;

            compress(initCodeSize + 1, os); // compress and write the pixel data

            os.write(0); // write block terminator
        }

        // Flush the packet to disk, and reset the accumulator
        void flush_char(OutputStream outs) throws IOException {
            if (a_count > 0) {
                outs.write(a_count);
                outs.write(accum, 0, a_count);
                a_count = 0;
            }
        }

        final int MAXCODE(int n_bits) {
            return (1 << n_bits) - 1;
        }

        //----------------------------------------------------------------------------
        // Return the next pixel from the image
        //----------------------------------------------------------------------------
        private int nextPixel() {
            if (remaining == 0) {
                return EOF;
            }

            --remaining;

            byte pix = pixAry[curPixel++];

            return pix & 0xff;
        }

        void output(int code, OutputStream outs) throws IOException {
            cur_accum &= masks[cur_bits];

            if (cur_bits > 0) {
                cur_accum |= (code << cur_bits);
            } else {
                cur_accum = code;
            }

            cur_bits += n_bits;

            while (cur_bits >= 8) {
                char_out((byte) (cur_accum & 0xff), outs);
                cur_accum >>= 8;
                cur_bits -= 8;
            }

            // If the next entry is going to be too big for the code size,
            // then increase it, if possible.
            if (free_ent > maxcode || clear_flg) {
                if (clear_flg) {
                    maxcode = MAXCODE(n_bits = g_init_bits);
                    clear_flg = false;
                } else {
                    ++n_bits;
                    if (n_bits == maxbits) {
                        maxcode = maxmaxcode;
                    } else {
                        maxcode = MAXCODE(n_bits);
                    }
                }
            }

            if (code == EOFCode) {
                // At EOF, write the rest of the buffer.
                while (cur_bits > 0) {
                    char_out((byte) (cur_accum & 0xff), outs);
                    cur_accum >>= 8;
                    cur_bits -= 8;
                }

                flush_char(outs);
            }
        }
    }
分享到:
评论

相关推荐

    AnimatedGifEncoder NeuQuant LZWEncoder源码(图片处理)

    在给定的压缩包文件中,我们关注的是三个关键组件:`AnimatedGifEncoder`、`NeuQuant`和`LZWEncoder`,这些都是与处理GIF动图密切相关的类。以下是这些组件的详细解释和它们在图片处理中的应用。 1. ** ...

    AnimatedGifEncoder、LZWEncoder、GifDecoder、NeuQuant

    java处理gif的几个类(AnimatedGifEncoder、LZWEncoder、GifDecoder、NeuQuant),网上搜集的打成jar包方便使用

    AnimatedGifEncoder

    总的来说,AnimatedGifEncoder 是一个强大且实用的Java工具,它简化了动态GIF的生成过程,使得开发者无需深入理解复杂的GIF编码细节,也能轻松创建出高质量的动画效果。对于那些需要在Java项目中处理GIF的开发者来说...

    AnimatedGifEncoder 类 c# 制作 gif 用到

    c# 使用图片制作 gif 的时候,需要用到一个类,那就是 AnimatedGifEncoder,使用的时候,把这个类复制进工程中,就可以使用相关类了。

    gif的四个java类

    在Java编程环境中,处理图像文件,特别是动画GIF文件时,常常会涉及到四个核心类:`AnimatedGifEncoder`、`GifDecoder`、`LZWEncoder`和`NeuQuant`。这些类分别用于创建、解码和优化GIF图像。下面将详细解释每个类的...

    NGif.包含AnimatedGifEncoder、GifDecoder、GifEncoder、LZWEncoder、NeuQuant

    "NGif"是一个专为处理GIF文件而设计的类库,它包含了多种核心组件,如 AnimatedGifEncoder、GifDecoder、GifEncoder、LZWEncoder 和 NeuQuant,这些组件对于理解和操作GIF文件至关重要。 **AnimatedGifEncoder** 是...

    GIF解码和编码操作库源码

    该库包括四个类文件:AnimatedGifEncoder.java、GifDecoder.java、LZWEncoder.java 和 NeuQuant.java。 AnimatedGifEncoder.java 类文件用于编码 GIF 图像,提供了对 GIF 图像的编码和压缩功能。GifDecoder.java ...

    C# 操作gif 合成类

    在C#编程环境中,处理GIF图像文件时,我们经常需要进行合成操作,例如将多个静态图片(如JPG、GIF或PNG)合并成一个动态的GIF文件。这在开发各种应用,如社交媒体分享工具、动画制作软件或者数据分析可视化界面时...

    c#Gif操作类,能处理GIF图片

    1. **GifHelper.cs**:这是一个核心的辅助类,它封装了对GIF图像进行读取、写入和修改的基本操作。它可能包含如打开GIF文件、创建新GIF、合并GIF帧等方法。GifHelper可能是整个类库的入口点,允许开发者通过简单的...

    AnimatedGifEncoder.java源码(处理GIF图片)

    AnimatedGifEncoder.java源码(处理GIF图片)AnimatedGifEncoder.java源码(处理GIF图片)AnimatedGifEncoder.java源码(处理GIF图片)

    C#gif相关操作

    首先,需要定义一个 MakeTransparentGif 方法,该方法将输入一个 Bitmap 对象和一个 Color 对象,输出一个新的 MemoryStream 对象,其中包含了透明背景的 GIF 文件。 在 MakeTransparentGif 方法中,首先将 Bitmap ...

    java 合成 gif

    Java 合成 GIF 是一种利用编程技术将多张静态图片(如JPG)组合成一个动态GIF图像的过程。在Java中,这个过程涉及到多个关键概念和技术,包括图像处理、编码算法以及文件格式理解。以下是对这些知识点的详细说明: ...

    GIF图片生成器(C#)

    在IT领域,C#是一种广泛...总的来说,“GIF图片生成器(C#)”项目涵盖了C#编程、图像处理、GUI设计、文件操作、动画制作等多个方面的知识,对于想要深入学习C#开发或者图形处理技术的开发者来说,是一个很好的实践项目。

    一个播放GIF动态图片的MFC控件类

    在Windows编程环境中,MFC(Microsoft Foundation Classes)库是一个强大的工具,它为开发人员提供了创建...这个类的设计和实现涉及了MFC消息处理、GDI+图像操作以及动画控制等多个方面,是MFC编程中的一个实用示例。

    关于Gif解析的java代码

    这里提到的四个源代码文件——`AnimatedGifEncoder.java`、`GifHelper.java`、`LZWencoder.java`和`NeuQuant.java`,它们分别扮演了不同的角色,共同构建了一个完整的GIF编码解决方案。 1. ** AnimatedGifEncoder....

    Gif-Animation.zip_GIF 动画_GIF类 C++_GifAnimation _gif

    "Gif-Animation.zip"这个压缩包提供了一个名为"GIF Animation"的C++类,专门用于处理和创建GIF动画。这个类可能包含了解析GIF文件格式、管理帧序列、控制动画播放速度以及合成和输出新动画等功能。通过这样的类库,...

    gif操作的jar包gif4j

    GIF4J是一个Java库,专门用于处理GIF(Graphics Interchange Format)动态图像。它提供了丰富的API,允许开发者在Java应用程序中进行各种GIF图片的编辑和操作。以下是一些关于GIF4J的关键知识点: 1. **GIF读取与...

    vc++显示动态gif图片的PictureEx类

    `PictureEx`类是专门为在VC++应用程序中显示动态GIF而设计的一个自定义控件,它使得在MFC(Microsoft Foundation Classes)框架下处理动态GIF变得简单易行。 动态GIF图片是一种支持多帧的图像格式,每帧可以有各自...

    C# gif类库

    “AnimatedGifEncoder.cs”文件则可能是动画GIF编码器,它负责将一系列帧或图像数据编码成一个标准的GIF动画文件。这个类可能包含方法来设置动画参数,如帧延迟时间、循环次数以及颜色处理选项。编码过程涉及到LZW...

    vc 轻松实现gif效果的mfc类Gif-Animation

    在给定的资源中,“vc 轻松实现gif效果的mfc类Gif-Animation”提供了一个专为MFC设计的类,使得在VC++项目中处理和显示GIF动画变得简单。GIF(Graphics Interchange Format)是一种流行的图像格式,常用于存储动画,...

Global site tag (gtag.js) - Google Analytics