Example #1
0
        /**
         * Encodes and writes pixel data
         */
        protected void WritePixels()
        {
            LZWEncoder encoder =
                new LZWEncoder(width, height, indexedPixels, colorDepth);

            encoder.Encode(fs);
        }
 /**
  * Encodes and writes pixel data
  */
 protected void WritePixels()
 {
     LZWEncoder encoder =
         new LZWEncoder(width, height, indexedPixels, colorDepth);
     encoder.Encode(fs);
 }