JAVA生成GIF图片

时间:2020-11-27 04:03:46
 前面写了利用java合并图片的文章,一位朋友说应该把gif图片不失真的合并起来,自己想想也是,可是自己技术还没过关,所以没有找到解决方法,于是上网GOOGLE一番,以外发现了一套java生成gif图片的方法,现在贴上来,跟大家共同学习。
  先看一下效果图:
  
JAVA生成GIF图片
 
主方法:
  1. import com.sun.image.codec.jpeg.*;
  2. import com.sun.image.codec.*;
  3. import javax.imageio.*;
  4. import java.awt.*;
  5. import java.io.*;
  6. import java.awt.image.*;
  7. public class DrawImage{
  8.     public static void main(String[] args) throws Exception{
  9.         
  10.         
  11.         try
  12.             BufferedImage src = ImageIO.read(new File("Img221785570.jpg")); // ¶ÁÈëÎļþ 
  13.             BufferedImage src1 = ImageIO.read(new File("W.gif")); // ¶ÁÈëÎļþ 
  14.             //BufferedImage src2 = ImageIO.read(new File("c:/ship3.jpg")); // ¶ÁÈëÎļþ 
  15.             AnimatedGifEncoder e = new AnimatedGifEncoder(); 
  16.             e.setRepeat(0); 
  17.             e.start("laoma.gif"); 
  18.             e.setDelay(300); // 1 frame per sec 
  19.             e.addFrame(src); 
  20.             e.setDelay(100); 
  21.             e.addFrame(src1); 
  22.             e.setDelay(100); 
  23.         //  e.addFrame(src2); 
  24.             e.finish(); 
  25.         }catch(IOException e){ 
  26.         e.printStackTrace(); 
  27.         } 
  28.     }
  29. }

其中有两个关键类:

  1. import java.io.*;
  2. import java.awt.*;
  3. import java.awt.image.*;
  4. /**
  5.  * Class AnimatedGifEncoder - Encodes a GIF file consisting of one or
  6.  * more frames.
  7.  * <pre>
  8.  * Example:
  9.  *    AnimatedGifEncoder e = new AnimatedGifEncoder();
  10.  *    e.start(outputFileName);
  11.  *    e.setDelay(1000);   // 1 frame per sec
  12.  *    e.addFrame(image1);
  13.  *    e.addFrame(image2);
  14.  *    e.finish();
  15.  * </pre>
  16.  * No copyright asserted on the source code of this class.  May be used
  17.  * for any purpose, however, refer to the Unisys LZW patent for restrictions
  18.  * on use of the associated LZWEncoder class.  Please forward any corrections
  19.  * to kweiner@fmsware.com.
  20.  *
  21.  * @author Kevin Weiner, FM Software
  22.  * @version 1.03 November 2003
  23.  *
  24.  */
  25. public class AnimatedGifEncoder {
  26.  protected int width; // image size
  27.  protected int height;
  28.  protected Color transparent = null// transparent color if given
  29.  protected int transIndex; // transparent index in color table
  30.  protected int repeat = -1// no repeat
  31.  protected int delay = 0// frame delay (hundredths)
  32.  protected boolean started = false// ready to output frames
  33.  protected OutputStream out;
  34.  protected BufferedImage image; // current frame
  35.  protected byte[] pixels; // BGR byte array from frame
  36.  protected byte[] indexedPixels; // converted frame indexed to palette
  37.  protected int colorDepth; // number of bit planes
  38.  protected byte[] colorTab; // RGB palette
  39.  protected boolean[] usedEntry = new boolean[256]; // active palette entries
  40.  protected int palSize = 7// color table size (bits-1)
  41.  protected int dispose = -1// disposal code (-1 = use default)
  42.  protected boolean closeStream = false// close stream when finished
  43.  protected boolean firstFrame = true;
  44.  protected boolean sizeSet = false// if false, get size from first frame
  45.  protected int sample = 10// default sample interval for quantizer
  46.  /**
  47.   * Sets the delay time between each frame, or changes it
  48.   * for subsequent frames (applies to last frame added).
  49.   *
  50.   * @param ms int delay time in milliseconds
  51.   */
  52.  public void setDelay(int ms) {
  53.   delay = Math.round(ms / 10.0f);
  54.  }
  55.  /**
  56.   * Sets the GIF frame disposal code for the last added frame
  57.   * and any subsequent frames.  Default is 0 if no transparent
  58.   * color has been set, otherwise 2.
  59.   * @param code int disposal code.
  60.   */
  61.  public void setDispose(int code) {
  62.   if (code >= 0) {
  63.    dispose = code;
  64.   }
  65.  }
  66.  /**
  67.   * Sets the number of times the set of GIF frames
  68.   * should be played.  Default is 1; 0 means play
  69.   * indefinitely.  Must be invoked before the first
  70.   * image is added.
  71.   *
  72.   * @param iter int number of iterations.
  73.   * @return
  74.   */
  75.  public void setRepeat(int iter) {
  76.   if (iter >= 0) {
  77.    repeat = iter;
  78.   }
  79.  }
  80.  /**
  81.   * Sets the transparent color for the last added frame
  82.   * and any subsequent frames.
  83.   * Since all colors are subject to modification
  84.   * in the quantization process, the color in the final
  85.   * palette for each frame closest to the given color
  86.   * becomes the transparent color for that frame.
  87.   * May be set to null to indicate no transparent color.
  88.   *
  89.   * @param c Color to be treated as transparent on display.
  90.   */
  91.  public void setTransparent(Color c) {
  92.   transparent = c;
  93.  }
  94.  /**
  95.   * Adds next GIF frame.  The frame is not written immediately, but is
  96.   * actually deferred until the next frame is received so that timing
  97.   * data can be inserted.  Invoking <code>finish()</code> flushes all
  98.   * frames.  If <code>setSize</code> was not invoked, the size of the
  99.   * first image is used for all subsequent frames.
  100.   *
  101.   * @param im BufferedImage containing frame to write.
  102.   * @return true if successful.
  103.   */
  104.  public boolean addFrame(BufferedImage im) {
  105.   if ((im == null) || !started) {
  106.    return false;
  107.   }
  108.   boolean ok = true;
  109.   try {
  110.    if (!sizeSet) {
  111.     // use first frame's size
  112.     setSize(im.getWidth(), im.getHeight());
  113.    }
  114.    image = im;
  115.    getImagePixels(); // convert to correct format if necessary
  116.    analyzePixels(); // build color table & map pixels
  117.    if (firstFrame) {
  118.     writeLSD(); // logical screen descriptior
  119.     writePalette(); // global color table
  120.     if (repeat >= 0) {
  121.      // use NS app extension to indicate reps
  122.      writeNetscapeExt();
  123.     }
  124.    }
  125.    writeGraphicCtrlExt(); // write graphic control extension
  126.    writeImageDesc(); // image descriptor
  127.    if (!firstFrame) {
  128.     writePalette(); // local color table
  129.    }
  130.    writePixels(); // encode and write pixel data
  131.    firstFrame = false;
  132.   } catch (IOException e) {
  133.    ok = false;
  134.   }
  135.   return ok;
  136.  }
  137.  /**
  138.   * Flushes any pending data and closes output file.
  139.   * If writing to an OutputStream, the stream is not
  140.   * closed.
  141.   */
  142.  public boolean finish() {
  143.   if (!started) return false;
  144.   boolean ok = true;
  145.   started = false;
  146.   try {
  147.    out.write(0x3b); // gif trailer
  148.    out.flush();
  149.    if (closeStream) {
  150.     out.close();
  151.    }
  152.   } catch (IOException e) {
  153.    ok = false;
  154.   }
  155.   // reset for subsequent use
  156.   transIndex = 0;
  157.   out = null;
  158.   image = null;
  159.   pixels = null;
  160.   indexedPixels = null;
  161.   colorTab = null;
  162.   closeStream = false;
  163.   firstFrame = true;
  164.   return ok;
  165.  }
  166.  /**
  167.   * Sets frame rate in frames per second.  Equivalent to
  168.   * <code>setDelay(1000/fps)</code>.
  169.   *
  170.   * @param fps float frame rate (frames per second)
  171.   */
  172.  public void setFrameRate(float fps) {
  173.   if (fps != 0f) {
  174.    delay = Math.round(100f / fps);
  175.   }
  176.  }
  177.  /**
  178.   * Sets quality of color quantization (conversion of images
  179.   * to the maximum 256 colors allowed by the GIF specification).
  180.   * Lower values (minimum = 1) produce better colors, but slow
  181.   * processing significantly.  10 is the default, and produces
  182.   * good color mapping at reasonable speeds.  Values greater
  183.   * than 20 do not yield significant improvements in speed.
  184.   *
  185.   * @param quality int greater than 0.
  186.   * @return
  187.   */
  188.  public void setQuality(int quality) {
  189.   if (quality < 1) quality = 1;
  190.   sample = quality;
  191.  }
  192.  /**
  193.   * Sets the GIF frame size.  The default size is the
  194.   * size of the first frame added if this method is
  195.   * not invoked.
  196.   *
  197.   * @param w int frame width.
  198.   * @param h int frame width.
  199.   */
  200.  public void setSize(int w, int h) {
  201.   if (started && !firstFrame) return;
  202.   width = w;
  203.   height = h;
  204.   if (width < 1) width = 320;
  205.   if (height < 1) height = 240;
  206.   sizeSet = true;
  207.  }
  208.  /**
  209.   * Initiates GIF file creation on the given stream.  The stream
  210.   * is not closed automatically.
  211.   *
  212.   * @param os OutputStream on which GIF images are written.
  213.   * @return false if initial write failed.
  214.   */
  215.  public boolean start(OutputStream os) {
  216.   if (os == nullreturn false;
  217.   boolean ok = true;
  218.   closeStream = false;
  219.   out = os;
  220.   try {
  221.    writeString("GIF89a"); // header
  222.   } catch (IOException e) {
  223.    ok = false;
  224.   }
  225.   return started = ok;
  226.  }
  227.  /**
  228.   * Initiates writing of a GIF file with the specified name.
  229.   *
  230.   * @param file String containing output file name.
  231.   * @return false if open or initial write failed.
  232.   */
  233.  public boolean start(String file) {
  234.   boolean ok = true;
  235.   try {
  236.    out = new BufferedOutputStream(new FileOutputStream(file));
  237.    ok = start(out);
  238.    closeStream = true;
  239.   } catch (IOException e) {
  240.    ok = false;
  241.   }
  242.   return started = ok;
  243.  }
  244.  /**
  245.   * Analyzes image colors and creates color map.
  246.   */
  247.  protected void analyzePixels() {
  248.   int len = pixels.length;
  249.   int nPix = len / 3;
  250.   indexedPixels = new byte[nPix];
  251.   NeuQuant nq = new NeuQuant(pixels, len, sample);
  252.   // initialize quantizer
  253.   colorTab = nq.process(); // create reduced palette
  254.   // convert map from BGR to RGB
  255.   for (int i = 0; i < colorTab.length; i += 3) {
  256.    byte temp = colorTab[i];
  257.    colorTab[i] = colorTab[i + 2];
  258.    colorTab[i + 2] = temp;
  259.    usedEntry[i / 3] = false;
  260.   }
  261.   // map image pixels to new palette
  262.   int k = 0;
  263.   for (int i = 0; i < nPix; i++) {
  264.    int index =
  265.     nq.map(pixels[k++] & 0xff,
  266.         pixels[k++] & 0xff,
  267.         pixels[k++] & 0xff);
  268.    usedEntry[index] = true;
  269.    indexedPixels[i] = (byte) index;
  270.   }
  271.   pixels = null;
  272.   colorDepth = 8;
  273.   palSize = 7;
  274.   // get closest match to transparent color if specified
  275.   if (transparent != null) {
  276.    transIndex = findClosest(transparent);
  277.   }
  278.  }
  279.  /**
  280.   * Returns index of palette color closest to c
  281.   *
  282.   */
  283.  protected int findClosest(Color c) {
  284.   if (colorTab == nullreturn -1;
  285.   int r = c.getRed();
  286.   int g = c.getGreen();
  287.   int b = c.getBlue();
  288.   int minpos = 0;
  289.   int dmin = 256 * 256 * 256;
  290.   int len = colorTab.length;
  291.   for (int i = 0; i < len;) {
  292.    int dr = r - (colorTab[i++] & 0xff);
  293.    int dg = g - (colorTab[i++] & 0xff);
  294.    int db = b - (colorTab[i] & 0xff);
  295.    int d = dr * dr + dg * dg + db * db;
  296.    int index = i / 3;
  297.    if (usedEntry[index] && (d < dmin)) {
  298.     dmin = d;
  299.     minpos = index;
  300.    }
  301.    i++;
  302.   }
  303.   return minpos;
  304.  }
  305.  /**
  306.   * Extracts image pixels into byte array "pixels"
  307.   */
  308.  protected void getImagePixels() {
  309.   int w = image.getWidth();
  310.   int h = image.getHeight();
  311.   int type = image.getType();
  312.   if ((w != width)
  313.    || (h != height)
  314.    || (type != BufferedImage.TYPE_3BYTE_BGR)) {
  315.    // create new image with right size/format
  316.    BufferedImage temp =
  317.     new BufferedImage(width, height, BufferedImage.TYPE_3BYTE_BGR);
  318.    Graphics2D g = temp.createGraphics();
  319.    g.drawImage(image, 00null);
  320.    image = temp;
  321.   }
  322.   pixels = ((DataBufferByte) image.getRaster().getDataBuffer()).getData();
  323.  }
  324.  /**
  325.   * Writes Graphic Control Extension
  326.   */
  327.  protected void writeGraphicCtrlExt() throws IOException {
  328.   out.write(0x21); // extension introducer
  329.   out.write(0xf9); // GCE label
  330.   out.write(4); // data block size
  331.   int transp, disp;
  332.   if (transparent == null) {
  333.    transp = 0;
  334.    disp = 0// dispose = no action
  335.   } else {
  336.    transp = 1;
  337.    disp = 2// force clear if using transparent color
  338.   }
  339.   if (dispose >= 0) {
  340.    disp = dispose & 7// user override
  341.   }
  342.   disp <<= 2;
  343.   // packed fields
  344.   out.write(0 | // 1:3 reserved
  345.       disp | // 4:6 disposal
  346.          0 | // 7   user input - 0 = none
  347.        transp); // 8   transparency flag
  348.   writeShort(delay); // delay x 1/100 sec
  349.   out.write(transIndex); // transparent color index
  350.   out.write(0); // block terminator
  351.  }
  352.  /**
  353.   * Writes Image Descriptor
  354.   */
  355.  protected void writeImageDesc() throws IOException {
  356.   out.write(0x2c); // image separator
  357.   writeShort(0); // image position x,y = 0,0
  358.   writeShort(0);
  359.   writeShort(width); // image size
  360.   writeShort(height);
  361.   // packed fields
  362.   if (firstFrame) {
  363.    // no LCT  - GCT is used for first (or only) frame
  364.    out.write(0);
  365.   } else {
  366.    // specify normal LCT
  367.    out.write(0x80 | // 1 local color table  1=yes
  368.        0 | // 2 interlace - 0=no
  369.        0 | // 3 sorted - 0=no
  370.        0 | // 4-5 reserved
  371.        palSize); // 6-8 size of color table
  372.   }
  373.  }
  374.  /**
  375.   * Writes Logical Screen Descriptor
  376.   */
  377.  protected void writeLSD() throws IOException {
  378.   // logical screen size
  379.   writeShort(width);
  380.   writeShort(height);
  381.   // packed fields
  382.   out.write((0x80 | // 1   : global color table flag = 1 (gct used)
  383.        0x70 | // 2-4 : color resolution = 7
  384.        0x00 | // 5   : gct sort flag = 0
  385.       palSize)); // 6-8 : gct size
  386.   out.write(0); // background color index
  387.   out.write(0); // pixel aspect ratio - assume 1:1
  388.  }
  389.  /**
  390.   * Writes Netscape application extension to define
  391.   * repeat count.
  392.   */
  393.  protected void writeNetscapeExt() throws IOException {
  394.   out.write(0x21); // extension introducer
  395.   out.write(0xff); // app extension label
  396.   out.write(11); // block size
  397.   writeString("NETSCAPE" + "2.0"); // app id + auth code
  398.   out.write(3); // sub-block size
  399.   out.write(1); // loop sub-block id
  400.   writeShort(repeat); // loop count (extra iterations, 0=repeat forever)
  401.   out.write(0); // block terminator
  402.  }
  403.  /**
  404.   * Writes color table
  405.   */
  406.  protected void writePalette() throws IOException {
  407.   out.write(colorTab, 0, colorTab.length);
  408.   int n = (3 * 256) - colorTab.length;
  409.   for (int i = 0; i < n; i++) {
  410.    out.write(0);
  411.   }
  412.  }
  413.  /**
  414.   * Encodes and writes pixel data
  415.   */
  416.  protected void writePixels() throws IOException {
  417.   LZWEncoder encoder =
  418.    new LZWEncoder(width, height, indexedPixels, colorDepth);
  419.   encoder.encode(out);
  420.  }
  421.  /**
  422.   *    Write 16-bit value to output stream, LSB first
  423.   */
  424.  protected void writeShort(int value) throws IOException {
  425.   out.write(value & 0xff);
  426.   out.write((value >> 8) & 0xff);
  427.  }
  428.  /**
  429.   * Writes string to output stream
  430.   */
  431.  protected void writeString(String s) throws IOException {
  432.   for (int i = 0; i < s.length(); i++) {
  433.    out.write((byte) s.charAt(i));
  434.   }
  435.  }
  436. }

 

 

LZWEncoder.java

 

  1. import java.io.OutputStream;
  2. import java.io.IOException;
  3. //==============================================================================
  4. //  Adapted from Jef Poskanzer's Java port by way of J. M. G. Elliott.
  5. //  K Weiner 12/00
  6. class LZWEncoder {
  7.  private static final int EOF = -1;
  8.  private int imgW, imgH;
  9.  private byte[] pixAry;
  10.  private int initCodeSize;
  11.  private int remaining;
  12.  private int curPixel;
  13.  // GIFCOMPR.C       - GIF Image compression routines
  14.  //
  15.  // Lempel-Ziv compression based on 'compress'.  GIF modifications by
  16.  // David Rowley (mgardi@watdcsu.waterloo.edu)
  17.  // General DEFINEs
  18.  static final int BITS = 12;
  19.  static final int HSIZE = 5003// 80% occupancy
  20.  // GIF Image compression - modified 'compress'
  21.  //
  22.  // Based on: compress.c - File compression ala IEEE Computer, June 1984.
  23.  //
  24.  // By Authors:  Spencer W. Thomas      (decvax!harpo!utah-cs!utah-gr!thomas)
  25.  //              Jim McKie              (decvax!mcvax!jim)
  26.  //              Steve Davies           (decvax!vax135!petsd!peora!srd)
  27.  //              Ken Turkowski          (decvax!decwrl!turtlevax!ken)
  28.  //              James A. Woods         (decvax!ihnp4!ames!jaw)
  29.  //              Joe Orost              (decvax!vax135!petsd!joe)
  30.  int n_bits; // number of bits/code
  31.  int maxbits = BITS; // user settable max # bits/code
  32.  int maxcode; // maximum code, given n_bits
  33.  int maxmaxcode = 1 << BITS; // should NEVER generate this code
  34.  int[] htab = new int[HSIZE];
  35.  int[] codetab = new int[HSIZE];
  36.  int hsize = HSIZE; // for dynamic table sizing
  37.  int free_ent = 0// first unused entry
  38.  // block compression parameters -- after all codes are used up,
  39.  // and compression rate changes, start over.
  40.  boolean clear_flg = false;
  41.  // Algorithm:  use open addressing double hashing (no chaining) on the
  42.  // prefix code / next character combination.  We do a variant of Knuth's
  43.  // algorithm D (vol. 3, sec. 6.4) along with G. Knott's relatively-prime
  44.  // secondary probe.  Here, the modular division first probe is gives way
  45.  // to a faster exclusive-or manipulation.  Also do block compression with
  46.  // an adaptive reset, whereby the code table is cleared when the compression
  47.  // ratio decreases, but after the table fills.  The variable-length output
  48.  // codes are re-sized at this point, and a special CLEAR code is generated
  49.  // for the decompressor.  Late addition:  construct the table according to
  50.  // file size for noticeable speed improvement on small files.  Please direct
  51.  // questions about this implementation to ames!jaw.
  52.  int g_init_bits;
  53.  int ClearCode;
  54.  int EOFCode;
  55.  // output
  56.  //
  57.  // Output the given code.
  58.  // Inputs:
  59.  //      code:   A n_bits-bit integer.  If == -1, then EOF.  This assumes
  60.  //              that n_bits =< wordsize - 1.
  61.  // Outputs:
  62.  //      Outputs code to the file.
  63.  // Assumptions:
  64.  //      Chars are 8 bits long.
  65.  // Algorithm:
  66.  //      Maintain a BITS character long buffer (so that 8 codes will
  67.  // fit in it exactly).  Use the VAX insv instruction to insert each
  68.  // code in turn.  When the buffer fills up empty it and start over.
  69.  int cur_accum = 0;
  70.  int cur_bits = 0;
  71.  int masks[] =
  72.   {
  73.    0x0000,
  74.    0x0001,
  75.    0x0003,
  76.    0x0007,
  77.    0x000F,
  78.    0x001F,
  79.    0x003F,
  80.    0x007F,
  81.    0x00FF,
  82.    0x01FF,
  83.    0x03FF,
  84.    0x07FF,
  85.    0x0FFF,
  86.    0x1FFF,
  87.    0x3FFF,
  88.    0x7FFF,
  89.    0xFFFF };
  90.  // Number of characters so far in this 'packet'
  91.  int a_count;
  92.  // Define the storage for the packet accumulator
  93.  byte[] accum = new byte[256];
  94.  //----------------------------------------------------------------------------
  95.  LZWEncoder(int width, int height, byte[] pixels, int color_depth) {
  96.   imgW = width;
  97.   imgH = height;
  98.   pixAry = pixels;
  99.   initCodeSize = Math.max(2, color_depth);
  100.  }
  101.  // Add a character to the end of the current packet, and if it is 254
  102.  // characters, flush the packet to disk.
  103.  void char_out(byte c, OutputStream outs) throws IOException {
  104.   accum[a_count++] = c;
  105.   if (a_count >= 254)
  106.    flush_char(outs);
  107.  }
  108.  // Clear out the hash table
  109.  // table clear for block compress
  110.  void cl_block(OutputStream outs) throws IOException {
  111.   cl_hash(hsize);
  112.   free_ent = ClearCode + 2;
  113.   clear_flg = true;
  114.   output(ClearCode, outs);
  115.  }
  116.  // reset code table
  117.  void cl_hash(int hsize) {
  118.   for (int i = 0; i < hsize; ++i)
  119.    htab[i] = -1;
  120.  }
  121.  void compress(int init_bits, OutputStream outs) throws IOException {
  122.   int fcode;
  123.   int i /* = 0 */;
  124.   int c;
  125.   int ent;
  126.   int disp;
  127.   int hsize_reg;
  128.   int hshift;
  129.   // Set up the globals:  g_init_bits - initial number of bits
  130.   g_init_bits = init_bits;
  131.   // Set up the necessary values
  132.   clear_flg = false;
  133.   n_bits = g_init_bits;
  134.   maxcode = MAXCODE(n_bits);
  135.   ClearCode = 1 << (init_bits - 1);
  136.   EOFCode = ClearCode + 1;
  137.   free_ent = ClearCode + 2;
  138.   a_count = 0// clear packet
  139.   ent = nextPixel();
  140.   hshift = 0;
  141.   for (fcode = hsize; fcode < 65536; fcode *= 2)
  142.    ++hshift;
  143.   hshift = 8 - hshift; // set hash code range bound
  144.   hsize_reg = hsize;
  145.   cl_hash(hsize_reg); // clear hash table
  146.   output(ClearCode, outs);
  147.   outer_loop : while ((c = nextPixel()) != EOF) {
  148.    fcode = (c << maxbits) + ent;
  149.    i = (c << hshift) ^ ent; // xor hashing
  150.    if (htab[i] == fcode) {
  151.     ent = codetab[i];
  152.     continue;
  153.    } else if (htab[i] >= 0// non-empty slot
  154.     {
  155.     disp = hsize_reg - i; // secondary hash (after G. Knott)
  156.     if (i == 0)
  157.      disp = 1;
  158.     do {
  159.      if ((i -= disp) < 0)
  160.       i += hsize_reg;
  161.      if (htab[i] == fcode) {
  162.       ent = codetab[i];
  163.       continue outer_loop;
  164.      }
  165.     } while (htab[i] >= 0);
  166.    }
  167.    output(ent, outs);
  168.    ent = c;
  169.    if (free_ent < maxmaxcode) {
  170.     codetab[i] = free_ent++; // code -> hashtable
  171.     htab[i] = fcode;
  172.    } else
  173.     cl_block(outs);
  174.   }
  175.   // Put out the final code.
  176.   output(ent, outs);
  177.   output(EOFCode, outs);
  178.  }
  179.  //----------------------------------------------------------------------------
  180.  void encode(OutputStream os) throws IOException {
  181.   os.write(initCodeSize); // write "initial code size" byte
  182.   remaining = imgW * imgH; // reset navigation variables
  183.   curPixel = 0;
  184.   compress(initCodeSize + 1, os); // compress and write the pixel data
  185.   os.write(0); // write block terminator
  186.  }
  187.  // Flush the packet to disk, and reset the accumulator
  188.  void flush_char(OutputStream outs) throws IOException {
  189.   if (a_count > 0) {
  190.    outs.write(a_count);
  191.    outs.write(accum, 0, a_count);
  192.    a_count = 0;
  193.   }
  194.  }
  195.  final int MAXCODE(int n_bits) {
  196.   return (1 << n_bits) - 1;
  197.  }
  198.  //----------------------------------------------------------------------------
  199.  // Return the next pixel from the image
  200.  //----------------------------------------------------------------------------
  201.  private int nextPixel() {
  202.   if (remaining == 0)
  203.    return EOF;
  204.   --remaining;
  205.   byte pix = pixAry[curPixel++];
  206.   return pix & 0xff;
  207.  }
  208.  void output(int code, OutputStream outs) throws IOException {
  209.   cur_accum &= masks[cur_bits];
  210.   if (cur_bits > 0)
  211.    cur_accum |= (code << cur_bits);
  212.   else
  213.    cur_accum = code;
  214.   cur_bits += n_bits;
  215.   while (cur_bits >= 8) {
  216.    char_out((byte) (cur_accum & 0xff), outs);
  217.    cur_accum >>= 8;
  218.    cur_bits -= 8;
  219.   }
  220.   // If the next entry is going to be too big for the code size,
  221.   // then increase it, if possible.
  222.   if (free_ent > maxcode || clear_flg) {
  223.    if (clear_flg) {
  224.     maxcode = MAXCODE(n_bits = g_init_bits);
  225.     clear_flg = false;
  226.    } else {
  227.     ++n_bits;
  228.     if (n_bits == maxbits)
  229.      maxcode = maxmaxcode;
  230.     else
  231.      maxcode = MAXCODE(n_bits);
  232.    }
  233.   }
  234.   if (code == EOFCode) {
  235.    // At EOF, write the rest of the buffer.
  236.    while (cur_bits > 0) {
  237.     char_out((byte) (cur_accum & 0xff), outs);
  238.     cur_accum >>= 8;
  239.     cur_bits -= 8;
  240.    }
  241.    flush_char(outs);
  242.   }
  243.  }
  244. }

 

NeuQuant.java

  1. /* NeuQuant Neural-Net Quantization Algorithm
  2.  * ------------------------------------------
  3.  *
  4.  * Copyright (c) 1994 Anthony Dekker
  5.  *
  6.  * NEUQUANT Neural-Net quantization algorithm by Anthony Dekker, 1994.
  7.  * See "Kohonen neural networks for optimal colour quantization"
  8.  * in "Network: Computation in Neural Systems" Vol. 5 (1994) pp 351-367.
  9.  * for a discussion of the algorithm.
  10.  *
  11.  * Any party obtaining a copy of these files from the author, directly or
  12.  * indirectly, is granted, free of charge, a full and unrestricted irrevocable,
  13.  * world-wide, paid up, royalty-free, nonexclusive right and license to deal
  14.  * in this software and documentation files (the "Software"), including without
  15.  * limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,
  16.  * and/or sell copies of the Software, and to permit persons who receive
  17.  * copies from any such party to do so, with the only requirement being
  18.  * that this copyright notice remain intact.
  19.  */
  20. // Ported to Java 12/00 K Weiner
  21. public class NeuQuant {
  22.  protected static final int netsize = 256/* number of colours used */
  23.  /* four primes near 500 - assume no image has a length so large */
  24.  /* that it is divisible by all four primes */
  25.  protected static final int prime1 = 499;
  26.  protected static final int prime2 = 491;
  27.  protected static final int prime3 = 487;
  28.  protected static final int prime4 = 503;
  29.  protected static final int minpicturebytes = (3 * prime4);
  30.  /* minimum size for input image */
  31.  /* Program Skeleton
  32.     ----------------
  33.     [select samplefac in range 1..30]
  34.     [read image from input file]
  35.     pic = (unsigned char*) malloc(3*width*height);
  36.     initnet(pic,3*width*height,samplefac);
  37.     learn();
  38.     unbiasnet();
  39.     [write output image header, using writecolourmap(f)]
  40.     inxbuild();
  41.     write output image using inxsearch(b,g,r)      */
  42.  /* Network Definitions
  43.     ------------------- */
  44.  protected static final int maxnetpos = (netsize - 1);
  45.  protected static final int netbiasshift = 4/* bias for colour values */
  46.  protected static final int ncycles = 100/* no. of learning cycles */
  47.  /* defs for freq and bias */
  48.  protected static final int intbiasshift = 16/* bias for fractions */
  49.  protected static final int intbias = (((int1) << intbiasshift);
  50.  protected static final int gammashift = 10/* gamma = 1024 */
  51.  protected static final int gamma = (((int1) << gammashift);
  52.  protected static final int betashift = 10;
  53.  protected static final int beta = (intbias >> betashift); /* beta = 1/1024 */
  54.  protected static final int betagamma =
  55.   (intbias << (gammashift - betashift));
  56.  /* defs for decreasing radius factor */
  57.  protected static final int initrad = (netsize >> 3); /* for 256 cols, radius starts */
  58.  protected static final int radiusbiasshift = 6/* at 32.0 biased by 6 bits */
  59.  protected static final int radiusbias = (((int1) << radiusbiasshift);
  60.  protected static final int initradius = (initrad * radiusbias); /* and decreases by a */
  61.  protected static final int radiusdec = 30/* factor of 1/30 each cycle */
  62.  /* defs for decreasing alpha factor */
  63.  protected static final int alphabiasshift = 10/* alpha starts at 1.0 */
  64.  protected static final int initalpha = (((int1) << alphabiasshift);
  65.  protected int alphadec; /* biased by 10 bits */
  66.  /* radbias and alpharadbias used for radpower calculation */
  67.  protected static final int radbiasshift = 8;
  68.  protected static final int radbias = (((int1) << radbiasshift);
  69.  protected static final int alpharadbshift = (alphabiasshift + radbiasshift);
  70.  protected static final int alpharadbias = (((int1) << alpharadbshift);
  71.  /* Types and Global Variables
  72.  -------------------------- */
  73.  protected byte[] thepicture; /* the input image itself */
  74.  protected int lengthcount; /* lengthcount = H*W*3 */
  75.  protected int samplefac; /* sampling factor 1..30 */
  76.  //   typedef int pixel[4];                /* BGRc */
  77.  protected int[][] network; /* the network itself - [netsize][4] */
  78.  protected int[] netindex = new int[256];
  79.  /* for network lookup - really 256 */
  80.  protected int[] bias = new int[netsize];
  81.  /* bias and freq arrays for learning */
  82.  protected int[] freq = new int[netsize];
  83.  protected int[] radpower = new int[initrad];
  84.  /* radpower for precomputation */
  85.  /* Initialise network in range (0,0,0) to (255,255,255) and set parameters
  86.     ----------------------------------------------------------------------- */
  87.  public NeuQuant(byte[] thepic, int len, int sample) {
  88.   int i;
  89.   int[] p;
  90.   thepicture = thepic;
  91.   lengthcount = len;
  92.   samplefac = sample;
  93.   network = new int[netsize][];
  94.   for (i = 0; i < netsize; i++) {
  95.    network[i] = new int[4];
  96.    p = network[i];
  97.    p[0] = p[1] = p[2] = (i << (netbiasshift + 8)) / netsize;
  98.    freq[i] = intbias / netsize; /* 1/netsize */
  99.    bias[i] = 0;
  100.   }
  101.  }
  102.  public byte[] colorMap() {
  103.   byte[] map = new byte[3 * netsize];
  104.   int[] index = new int[netsize];
  105.   for (int i = 0; i < netsize; i++)
  106.    index[network[i][3]] = i;
  107.   int k = 0;
  108.   for (int i = 0; i < netsize; i++) {
  109.    int j = index[i];
  110.    map[k++] = (byte) (network[j][0]);
  111.    map[k++] = (byte) (network[j][1]);
  112.    map[k++] = (byte) (network[j][2]);
  113.   }
  114.   return map;
  115.  }
  116.  /* Insertion sort of network and building of netindex[0..255] (to do after unbias)
  117.     ------------------------------------------------------------------------------- */
  118.  public void inxbuild() {
  119.   int i, j, smallpos, smallval;
  120.   int[] p;
  121.   int[] q;
  122.   int previouscol, startpos;
  123.   previouscol = 0;
  124.   startpos = 0;
  125.   for (i = 0; i < netsize; i++) {
  126.    p = network[i];
  127.    smallpos = i;
  128.    smallval = p[1]; /* index on g */
  129.    /* find smallest in i..netsize-1 */
  130.    for (j = i + 1; j < netsize; j++) {
  131.     q = network[j];
  132.     if (q[1] < smallval) { /* index on g */
  133.      smallpos = j;
  134.      smallval = q[1]; /* index on g */
  135.     }
  136.    }
  137.    q = network[smallpos];
  138.    /* swap p (i) and q (smallpos) entries */
  139.    if (i != smallpos) {
  140.     j = q[0];
  141.     q[0] = p[0];
  142.     p[0] = j;
  143.     j = q[1];
  144.     q[1] = p[1];
  145.     p[1] = j;
  146.     j = q[2];
  147.     q[2] = p[2];
  148.     p[2] = j;
  149.     j = q[3];
  150.     q[3] = p[3];
  151.     p[3] = j;
  152.    }
  153.    /* smallval entry is now in position i */
  154.    if (smallval != previouscol) {
  155.     netindex[previouscol] = (startpos + i) >> 1;
  156.     for (j = previouscol + 1; j < smallval; j++)
  157.      netindex[j] = i;
  158.     previouscol = smallval;
  159.     startpos = i;
  160.    }
  161.   }
  162.   netindex[previouscol] = (startpos + maxnetpos) >> 1;
  163.   for (j = previouscol + 1; j < 256; j++)
  164.    netindex[j] = maxnetpos; /* really 256 */
  165.  }
  166.  /* Main Learning Loop
  167.     ------------------ */
  168.  public void learn() {
  169.   int i, j, b, g, r;
  170.   int radius, rad, alpha, step, delta, samplepixels;
  171.   byte[] p;
  172.   int pix, lim;
  173.   if (lengthcount < minpicturebytes)
  174.    samplefac = 1;
  175.   alphadec = 30 + ((samplefac - 1) / 3);
  176.   p = thepicture;
  177.   pix = 0;
  178.   lim = lengthcount;
  179.   samplepixels = lengthcount / (3 * samplefac);
  180.   delta = samplepixels / ncycles;
  181.   alpha = initalpha;
  182.   radius = initradius;
  183.   rad = radius >> radiusbiasshift;
  184.   if (rad <= 1)
  185.    rad = 0;
  186.   for (i = 0; i < rad; i++)
  187.    radpower[i] =
  188.     alpha * (((rad * rad - i * i) * radbias) / (rad * rad));
  189.   //fprintf(stderr,"beginning 1D learning: initial radius=%d/n", rad);
  190.   if (lengthcount < minpicturebytes)
  191.    step = 3;
  192.   else if ((lengthcount % prime1) != 0)
  193.    step = 3 * prime1;
  194.   else {
  195.    if ((lengthcount % prime2) != 0)
  196.     step = 3 * prime2;
  197.    else {
  198.     if ((lengthcount % prime3) != 0)
  199.      step = 3 * prime3;
  200.     else
  201.      step = 3 * prime4;
  202.    }
  203.   }
  204.   i = 0;
  205.   while (i < samplepixels) {
  206.    b = (p[pix + 0] & 0xff) << netbiasshift;
  207.    g = (p[pix + 1] & 0xff) << netbiasshift;
  208.    r = (p[pix + 2] & 0xff) << netbiasshift;
  209.    j = contest(b, g, r);
  210.    altersingle(alpha, j, b, g, r);
  211.    if (rad != 0)
  212.     alterneigh(rad, j, b, g, r); /* alter neighbours */
  213.    pix += step;
  214.    if (pix >= lim)
  215.     pix -= lengthcount;
  216.    i++;
  217.    if (delta == 0)
  218.     delta = 1;
  219.    if (i % delta == 0) {
  220.     alpha -= alpha / alphadec;
  221.     radius -= radius / radiusdec;
  222.     rad = radius >> radiusbiasshift;
  223.     if (rad <= 1)
  224.      rad = 0;
  225.     for (j = 0; j < rad; j++)
  226.      radpower[j] =
  227.       alpha * (((rad * rad - j * j) * radbias) / (rad * rad));
  228.    }
  229.   }
  230.   //fprintf(stderr,"finished 1D learning: final alpha=%f !/n",((float)alpha)/initalpha);
  231.  }
  232.  /* Search for BGR values 0..255 (after net is unbiased) and return colour index
  233.     ---------------------------------------------------------------------------- */
  234.  public int map(int b, int g, int r) {
  235.   int i, j, dist, a, bestd;
  236.   int[] p;
  237.   int best;
  238.   bestd = 1000/* biggest possible dist is 256*3 */
  239.   best = -1;
  240.   i = netindex[g]; /* index on g */
  241.   j = i - 1/* start at netindex[g] and work outwards */
  242.   while ((i < netsize) || (j >= 0)) {
  243.    if (i < netsize) {
  244.     p = network[i];
  245.     dist = p[1] - g; /* inx key */
  246.     if (dist >= bestd)
  247.      i = netsize; /* stop iter */
  248.     else {
  249.      i++;
  250.      if (dist < 0)
  251.       dist = -dist;
  252.      a = p[0] - b;
  253.      if (a < 0)
  254.       a = -a;
  255.      dist += a;
  256.      if (dist < bestd) {
  257.       a = p[2] - r;
  258.       if (a < 0)
  259.        a = -a;
  260.       dist += a;
  261.       if (dist < bestd) {
  262.        bestd = dist;
  263.        best = p[3];
  264.       }
  265.      }
  266.     }
  267.    }
  268.    if (j >= 0) {
  269.     p = network[j];
  270.     dist = g - p[1]; /* inx key - reverse dif */
  271.     if (dist >= bestd)
  272.      j = -1/* stop iter */
  273.     else {
  274.      j--;
  275.      if (dist < 0)
  276.       dist = -dist;
  277.      a = p[0] - b;
  278.      if (a < 0)
  279.       a = -a;
  280.      dist += a;
  281.      if (dist < bestd) {
  282.       a = p[2] - r;
  283.       if (a < 0)
  284.        a = -a;
  285.       dist += a;
  286.       if (dist < bestd) {
  287.        bestd = dist;
  288.        best = p[3];
  289.       }
  290.      }
  291.     }
  292.    }
  293.   }
  294.   return (best);
  295.  }
  296.  public byte[] process() {
  297.   learn();
  298.   unbiasnet();
  299.   inxbuild();
  300.   return colorMap();
  301.  }
  302.  /* Unbias network to give byte values 0..255 and record position i to prepare for sort
  303.     ----------------------------------------------------------------------------------- */
  304.  public void unbiasnet() {
  305.   int i, j;
  306.   for (i = 0; i < netsize; i++) {
  307.    network[i][0] >>= netbiasshift;
  308.    network[i][1] >>= netbiasshift;
  309.    network[i][2] >>= netbiasshift;
  310.    network[i][3] = i; /* record colour no */
  311.   }
  312.  }
  313.  /* Move adjacent neurons by precomputed alpha*(1-((i-j)^2/[r]^2)) in radpower[|i-j|]
  314.     --------------------------------------------------------------------------------- */
  315.  protected void alterneigh(int rad, int i, int b, int g, int r) {
  316.   int j, k, lo, hi, a, m;
  317.   int[] p;
  318.   lo = i - rad;
  319.   if (lo < -1)
  320.    lo = -1;
  321.   hi = i + rad;
  322.   if (hi > netsize)
  323.    hi = netsize;
  324.   j = i + 1;
  325.   k = i - 1;
  326.   m = 1;
  327.   while ((j < hi) || (k > lo)) {
  328.    a = radpower[m++];
  329.    if (j < hi) {
  330.     p = network[j++];
  331.     try {
  332.      p[0] -= (a * (p[0] - b)) / alpharadbias;
  333.      p[1] -= (a * (p[1] - g)) / alpharadbias;
  334.      p[2] -= (a * (p[2] - r)) / alpharadbias;
  335.     } catch (Exception e) {
  336.     } // prevents 1.3 miscompilation
  337.    }
  338.    if (k > lo) {
  339.     p = network[k--];
  340.     try {
  341.      p[0] -= (a * (p[0] - b)) / alpharadbias;
  342.      p[1] -= (a * (p[1] - g)) / alpharadbias;
  343.      p[2] -= (a * (p[2] - r)) / alpharadbias;
  344.     } catch (Exception e) {
  345.     }
  346.    }
  347.   }
  348.  }
  349.  /* Move neuron i towards biased (b,g,r) by factor alpha
  350.     ---------------------------------------------------- */
  351.  protected void altersingle(int alpha, int i, int b, int g, int r) {
  352.   /* alter hit neuron */
  353.   int[] n = network[i];
  354.   n[0] -= (alpha * (n[0] - b)) / initalpha;
  355.   n[1] -= (alpha * (n[1] - g)) / initalpha;
  356.   n[2] -= (alpha * (n[2] - r)) / initalpha;
  357.  }
  358.  /* Search for biased BGR values
  359.     ---------------------------- */
  360.  protected int contest(int b, int g, int r) {
  361.   /* finds closest neuron (min dist) and updates freq */
  362.   /* finds best neuron (min dist-bias) and returns position */
  363.   /* for frequently chosen neurons, freq[i] is high and bias[i] is negative */
  364.   /* bias[i] = gamma*((1/netsize)-freq[i]) */
  365.   int i, dist, a, biasdist, betafreq;
  366.   int bestpos, bestbiaspos, bestd, bestbiasd;
  367.   int[] n;
  368.   bestd = ~(((int1) << 31);
  369.   bestbiasd = bestd;
  370.   bestpos = -1;
  371.   bestbiaspos = bestpos;
  372.   for (i = 0; i < netsize; i++) {
  373.    n = network[i];
  374.    dist = n[0] - b;
  375.    if (dist < 0)
  376.     dist = -dist;
  377.    a = n[1] - g;
  378.    if (a < 0)
  379.     a = -a;
  380.    dist += a;
  381.    a = n[2] - r;
  382.    if (a < 0)
  383.     a = -a;
  384.    dist += a;
  385.    if (dist < bestd) {
  386.     bestd = dist;
  387.     bestpos = i;
  388.    }
  389.    biasdist = dist - ((bias[i]) >> (intbiasshift - netbiasshift));
  390.    if (biasdist < bestbiasd) {
  391.     bestbiasd = biasdist;
  392.     bestbiaspos = i;
  393.    }
  394.    betafreq = (freq[i] >> betashift);
  395.    freq[i] -= betafreq;
  396.    bias[i] += (betafreq << gammashift);
  397.   }
  398.   freq[bestpos] += beta;
  399.   bias[bestpos] -= betagamma;
  400.   return (bestbiaspos);
  401.  }
  402. }

 

本想上传附件上来,但是初用,所以还不会……@#$#!@#

将就看一下吧