ximagif.h
上传用户:gnaf34
上传日期:2022-04-22
资源大小:1657k
文件大小:9k
源码类别:

IP电话/视频会议

开发平台:

Visual C++

  1. /*
  2.  * File: ximagif.h
  3.  * Purpose: GIF Image Class Loader and Writer
  4.  */
  5. /* === C R E D I T S  &  D I S C L A I M E R S ==============
  6.  * CxImageICO (c) 07/Aug/2001 <ing.davide.pizzolato@libero.it>
  7.  * Permission is given by the author to freely redistribute and include
  8.  * this code in any program as long as this credit is given where due.
  9.  *
  10.  * CxImage version 5.00 23/Aug/2002
  11.  * See the file history.htm for the complete bugfix and news report.
  12.  *
  13.  * Special thanks to Troels Knakkergaard for new features, enhancements and bugfixes
  14.  *
  15.  * original CImageGIF  and CImageIterator implementation are:
  16.  * Copyright: (c) 1995, Alejandro Aguilar Sierra <asierra@servidor.unam.mx>
  17.  *
  18.  * 6/15/97 Randy Spann: Added GIF87a writing support
  19.  *         R.Spann@ConnRiver.net
  20.  *
  21.  * DECODE.C - An LZW decoder for GIF
  22.  * Copyright (C) 1987, by Steven A. Bennett
  23.  * Copyright (C) 1994, C++ version by Alejandro Aguilar Sierra
  24.  *
  25.  * In accordance with the above, I want to credit Steve Wilhite who wrote
  26.  * the code which this is heavily inspired by...
  27.  *
  28.  * GIF and 'Graphics Interchange Format' are trademarks (tm) of
  29.  * Compuserve, Incorporated, an H&R Block Company.
  30.  *
  31.  * Release Notes: This file contains a decoder routine for GIF images
  32.  * which is similar, structurally, to the original routine by Steve Wilhite.
  33.  * It is, however, somewhat noticably faster in most cases.
  34.  *
  35.  * COVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN "AS IS" BASIS, WITHOUT WARRANTY
  36.  * OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES
  37.  * THAT THE COVERED CODE IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE
  38.  * OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED
  39.  * CODE IS WITH YOU. SHOULD ANY COVERED CODE PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT
  40.  * THE INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY
  41.  * SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL
  42.  * PART OF THIS LICENSE. NO USE OF ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT UNDER
  43.  * THIS DISCLAIMER.
  44.  *
  45.  * Use at your own risk!
  46.  * ==========================================================
  47.  */
  48. #if !defined(__ximaGIF_h)
  49. #define __ximaGIF_h
  50. #include "ximage.h"
  51. #if CXIMAGE_SUPPORT_GIF
  52. #define CXIMAGE_GIF_COMPRESSION 1 //(0=NONE 1=RLE 2=LZW)
  53. typedef short int       code_int;   
  54. /* Various error codes used by decoder */
  55. #define OUT_OF_MEMORY -10
  56. #define BAD_CODE_SIZE -20
  57. #define READ_ERROR -1
  58. #define WRITE_ERROR -2
  59. #define OPEN_ERROR -3
  60. #define CREATE_ERROR -4
  61. #define MAX_CODES   4095
  62. #define GIFBUFTAM 16384
  63. #define TRANSPARENCY_CODE 0xF9
  64. //LZW GIF Image compression
  65. #define MAXBITSCODES    12
  66. #define HSIZE  5003     /* 80% occupancy */
  67. #define MAXCODE(n_bits) (((code_int) 1 << (n_bits)) - 1)
  68. #define HashTabOf(i)    htab[i]
  69. #define CodeTabOf(i)    codetab[i]
  70. class CImageIterator;
  71. class CxImageGIF: public CxImage
  72. {
  73. #pragma pack(1)
  74. typedef struct tag_gifgce{
  75.   BYTE transpcolflag:1;
  76.   BYTE userinputflag:1;
  77.   BYTE dispmeth:3;
  78.   BYTE res:3;
  79.   WORD delaytime;
  80.   BYTE transpcolindex;
  81. } struct_gifgce;
  82. typedef struct tag_dscgif{ /* Logic Screen Descriptor  */
  83.   char header[6]; /* Firma and version */
  84.   USHORT scrwidth;
  85.   USHORT scrheight;
  86.   char pflds;
  87.   char bcindx;
  88.   char pxasrat;
  89. } struct_dscgif;
  90. typedef struct tag_image{      /* Image Descriptor */
  91.   USHORT l;
  92.   USHORT t;
  93.   USHORT w;
  94.   USHORT h;
  95.   BYTE   pf;
  96. } struct_image;
  97. typedef struct tag_TabCol{ /* Tabla de colores */
  98.   short colres; /* color resolution */
  99.   short sogct; /* size of global color table */
  100.   rgb_color paleta[256]; /* paleta */
  101. } struct_TabCol;
  102. typedef struct tag_RLE{
  103. int rl_pixel;
  104. int rl_basecode;
  105. int rl_count;
  106. int rl_table_pixel;
  107. int rl_table_max;
  108. int just_cleared;
  109. int out_bits;
  110. int out_bits_init;
  111. int out_count;
  112. int out_bump;
  113. int out_bump_init;
  114. int out_clear;
  115. int out_clear_init;
  116. int max_ocodes;
  117. int code_clear;
  118. int code_eof;
  119. unsigned int obuf;
  120. int obits;
  121. unsigned char oblock[256];
  122. int oblen;
  123. } struct_RLE;
  124. #pragma pack()
  125. public:
  126. CxImageGIF(): CxImage(CXIMAGE_FORMAT_GIF) {m_loops=0; m_dispmeth=0; m_comment[0]='';}
  127. // bool Load(const char * imageFileName){ return CxImage::Load(imageFileName,CXIMAGE_FORMAT_GIF);}
  128. // bool Save(const char * imageFileName){ return CxImage::Save(imageFileName,CXIMAGE_FORMAT_GIF);}
  129. bool Decode(CxFile * fp);
  130. bool Encode(CxFile * fp);
  131. bool Encode(CxFile * fp, CxImage ** pImages, int pagecount);
  132. bool Decode(FILE *fp) { CxIOFile file(fp); return Decode(&file); }
  133. bool Encode(FILE *fp) { CxIOFile file(fp); return Encode(&file); }
  134. bool Encode(FILE *fp, CxImage ** pImages, int pagecount)
  135. { CxIOFile file(fp); return Encode(&file, pImages, pagecount); }
  136. void SetLoops(int loops);
  137. long GetLoops();
  138. void SetComment(const char* sz_comment_in);
  139. void GetComment(char* sz_comment_out);
  140. void SetDisposalMethod(int dm);
  141. long GetDisposalMethod();
  142. protected:
  143. bool DecodeExtension(CxFile *fp);
  144. void EncodeHeader(CxFile *fp);
  145. void EncodeLoopExtension(CxFile *fp);
  146. void EncodeExtension(CxFile *fp);
  147. void EncodeBody(CxFile *fp, bool bLocalColorMap = false);
  148. void EncodeComment(CxFile *fp);
  149. bool EncodeRGB(CxFile *fp);
  150. void GifMix(CxImage & imgsrc2, long lxOffset, long lyOffset);
  151. struct_gifgce gifgce;
  152. int             curx, cury;
  153. long             CountDown;
  154. unsigned long    cur_accum;
  155. int              cur_bits;
  156. int interlaced, iypos, istep, iheight, ipass;
  157. int ibf;
  158. int ibfmax;
  159. BYTE buf[GIFBUFTAM + 1];
  160. // Implementation
  161. int GifNextPixel ();
  162. void Putword (int w, CxFile* fp );
  163. void compressNONE (int init_bits, CxFile* outfile);
  164. void compressLZW (int init_bits, CxFile* outfile);
  165. void output (code_int code );
  166. void cl_hash (long hsize);
  167. void char_out (int c);
  168. void flush_char ();
  169. short init_exp(short size);
  170. short get_next_code(CxFile*);
  171. short decoder(CxFile*, CImageIterator* iter, short linewidth, int &bad_code_count);
  172. int get_byte(CxFile*);
  173. int out_line(CImageIterator* iter, unsigned char *pixels, int linelen);
  174. int get_num_frames(CxFile *f);
  175. short curr_size;                     /* The current code size */
  176. short clear;                         /* Value for a clear code */
  177. short ending;                        /* Value for a ending code */
  178. short newcodes;                      /* First available code */
  179. short top_slot;                      /* Highest code for current size */
  180. short slot;                          /* Last read code */
  181. /* The following static variables are used
  182. * for seperating out codes */
  183. short navail_bytes;              /* # bytes left in block */
  184. short nbits_left;                /* # bits left in current BYTE */
  185. BYTE b1;                           /* Current BYTE */
  186. BYTE byte_buff[257];               /* Current block */
  187. BYTE *pbytes;                      /* Pointer to next BYTE in block */
  188. /* The reason we have these seperated like this instead of using
  189. * a structure like the original Wilhite code did, is because this
  190. * stuff generally produces significantly faster code when compiled...
  191. * This code is full of similar speedups...  (For a good book on writing
  192. * C for speed or for space optomisation, see Efficient C by Tom Plum,
  193. * published by Plum-Hall Associates...)
  194. */
  195. BYTE stack[MAX_CODES + 1];            /* Stack for storing pixels */
  196. BYTE suffix[MAX_CODES + 1];           /* Suffix table */
  197. USHORT prefix[MAX_CODES + 1];           /* Prefix linked list */
  198. //LZW GIF Image compression routines
  199. long htab [HSIZE];
  200. unsigned short codetab [HSIZE];
  201. int n_bits; /* number of bits/code */
  202. code_int maxcode; /* maximum code, given n_bits */
  203. code_int free_ent; /* first unused entry */
  204. int clear_flg;
  205. int g_init_bits;
  206. CxFile* g_outfile;
  207. int ClearCode;
  208. int EOFCode;
  209. int a_count;
  210. char accum[256];
  211. char m_comment[256];
  212. int m_loops;
  213. int m_dispmeth;
  214. //RLE compression routines
  215. void compressRLE( int init_bits, CxFile* outfile);
  216. void rle_clear(struct_RLE* rle);
  217. void rle_flush(struct_RLE* rle);
  218. void rle_flush_withtable(int count, struct_RLE* rle);
  219. void rle_flush_clearorrep(int count, struct_RLE* rle);
  220. void rle_flush_fromclear(int count,struct_RLE* rle);
  221. void rle_output_plain(int c,struct_RLE* rle);
  222. void rle_reset_out_clear(struct_RLE* rle);
  223. unsigned int rle_compute_triangle_count(unsigned int count, unsigned int nrepcodes);
  224. unsigned int rle_isqrt(unsigned int x);
  225. void rle_write_block(struct_RLE* rle);
  226. void rle_block_out(unsigned char c, struct_RLE* rle);
  227. void rle_block_flush(struct_RLE* rle);
  228. void rle_output(int val, struct_RLE* rle);
  229. void rle_output_flush(struct_RLE* rle);
  230. };
  231. #endif
  232. #endif