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

IP电话/视频会议

开发平台:

Visual C++

  1. /*
  2.  * File: ximatga.h
  3.  * Purpose: TARGA 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.  * CxImageTGA (c) 05/Jan/2002 <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.  * Parts of the code come from Paintlib
  14.  * Copyright (c) 1996-1998 Ulrich von Zadow
  15.  *
  16.  * COVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN "AS IS" BASIS, WITHOUT WARRANTY
  17.  * OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES
  18.  * THAT THE COVERED CODE IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE
  19.  * OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED
  20.  * CODE IS WITH YOU. SHOULD ANY COVERED CODE PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT
  21.  * THE INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY
  22.  * SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL
  23.  * PART OF THIS LICENSE. NO USE OF ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT UNDER
  24.  * THIS DISCLAIMER.
  25.  *
  26.  * Use at your own risk!
  27.  * ==========================================================
  28.  */
  29. #if !defined(__ximaTGA_h)
  30. #define __ximaTGA_h
  31. #include "ximage.h"
  32. #if CXIMAGE_SUPPORT_TGA
  33. class CxImageTGA: public CxImage
  34. {
  35. #pragma pack(1)
  36. typedef struct tagTgaHeader
  37. {
  38.     BYTE   IdLength;            // Image ID Field Length
  39.     BYTE   CmapType;            // Color Map Type
  40.     BYTE   ImageType;           // Image Type
  41.     WORD   CmapIndex;           // First Entry Index
  42.     WORD   CmapLength;          // Color Map Length
  43.     BYTE   CmapEntrySize;       // Color Map Entry Size
  44.     WORD   X_Origin;            // X-origin of Image
  45.     WORD   Y_Origin;            // Y-origin of Image
  46.     WORD   ImageWidth;          // Image Width
  47.     WORD   ImageHeight;         // Image Height
  48.     BYTE   PixelDepth;          // Pixel Depth
  49.     BYTE   ImagDesc;            // Image Descriptor
  50. } TGAHEADER;
  51. #pragma pack()
  52. public:
  53. CxImageTGA(): CxImage(CXIMAGE_FORMAT_TGA) {}
  54. // bool Load(const char * imageFileName){ return CxImage::Load(imageFileName,CXIMAGE_FORMAT_TGA);}
  55. // bool Save(const char * imageFileName){ return CxImage::Save(imageFileName,CXIMAGE_FORMAT_TGA);}
  56. bool Decode(CxFile * hFile);
  57. bool Encode(CxFile * hFile);
  58. bool Decode(FILE *hFile) { CxIOFile file(hFile); return Decode(&file); }
  59. bool Encode(FILE *hFile) { CxIOFile file(hFile); return Encode(&file); }
  60. protected:
  61. void ExpandCompressedLine(BYTE* pDest,TGAHEADER* ptgaHead,CxFile *hFile,int width, int y);
  62. void ExpandUncompressedLine(BYTE* pDest,TGAHEADER* ptgaHead,CxFile *hFile,int width, int y, int xoffset);
  63. };
  64. #endif
  65. #endif