gifimage.h
上传用户:zhongxx05
上传日期:2007-06-06
资源大小:33641k
文件大小:7k
源码类别:

Symbian

开发平台:

C/C++

  1. /* ***** BEGIN LICENSE BLOCK ***** 
  2.  * Version: RCSL 1.0/RPSL 1.0 
  3.  *  
  4.  * Portions Copyright (c) 1995-2002 RealNetworks, Inc. All Rights Reserved. 
  5.  *      
  6.  * The contents of this file, and the files included with this file, are 
  7.  * subject to the current version of the RealNetworks Public Source License 
  8.  * Version 1.0 (the "RPSL") available at 
  9.  * http://www.helixcommunity.org/content/rpsl unless you have licensed 
  10.  * the file under the RealNetworks Community Source License Version 1.0 
  11.  * (the "RCSL") available at http://www.helixcommunity.org/content/rcsl, 
  12.  * in which case the RCSL will apply. You may also obtain the license terms 
  13.  * directly from RealNetworks.  You may not use this file except in 
  14.  * compliance with the RPSL or, if you have a valid RCSL with RealNetworks 
  15.  * applicable to this file, the RCSL.  Please see the applicable RPSL or 
  16.  * RCSL for the rights, obligations and limitations governing use of the 
  17.  * contents of the file.  
  18.  *  
  19.  * This file is part of the Helix DNA Technology. RealNetworks is the 
  20.  * developer of the Original Code and owns the copyrights in the portions 
  21.  * it created. 
  22.  *  
  23.  * This file, and the files included with this file, is distributed and made 
  24.  * available on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER 
  25.  * EXPRESS OR IMPLIED, AND REALNETWORKS HEREBY DISCLAIMS ALL SUCH WARRANTIES, 
  26.  * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, FITNESS 
  27.  * FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. 
  28.  * 
  29.  * Technology Compatibility Kit Test Suite(s) Location: 
  30.  *    http://www.helixcommunity.org/content/tck 
  31.  * 
  32.  * Contributor(s): 
  33.  *  
  34.  * ***** END LICENSE BLOCK ***** */ 
  35. #ifndef _CGIFIMAGE_H
  36. #define _CGIFIMAGE_H
  37. #include "hxtypes.h"
  38. #include "hxresult.h"
  39. #include "lzw.h"
  40. class CGIFImage
  41. {
  42. public:
  43.     struct GraphicControlExtension
  44.     {
  45.         UINT32 m_ulDisposalMethod;
  46.         BOOL   m_bUserInputExpected;
  47.         BOOL   m_bTransparentIndexGiven;
  48.         UINT32 m_ulDelayTime;
  49.         UINT32 m_ulTransparentColorIndex;
  50.     };
  51.     struct ImageDescriptor
  52.     {
  53.         UINT32 m_ulImageLeft;
  54.         UINT32 m_ulImageTop;
  55.         UINT32 m_ulImageWidth;
  56.         UINT32 m_ulImageHeight;
  57.         BOOL   m_bLocalColorTablePresent;
  58.         BOOL   m_bInterlaced;
  59.         BOOL   m_bLocalColorsSorted;
  60.         UINT32 m_ulLocalColorTableBits;
  61.         UINT32 m_ulLocalColorTableNumEntries;
  62.     };
  63. protected:
  64.     enum
  65.     {
  66.         kRedIndex                          = 0,
  67.         kGreenIndex                        = 1,
  68.         kBlueIndex                         = 2,
  69.         kStateConstructed                  = 0,
  70.         kStateDecoInitialized              = 1,
  71.         kStateDecoInProgress               = 2,
  72.         kStateDecoFinished                 = 3,
  73.         kDisposalMethodNoneSpecified       = 0,
  74.         kDisposalMethodDoNotDispose        = 1,
  75.         kDisposalMethodRestoreToBackground = 2,
  76.         kDisposalMethodRestoreToPrevious   = 3
  77.     };
  78.     ImageDescriptor         m_cID;
  79.     GraphicControlExtension m_cGCE;
  80.     BOOL                    m_bGCEPresent;
  81.     BYTE                   *m_pucLocalColorMap;
  82.     BOOL                    m_bGlobalColorMapPresent;
  83.     UINT32                  m_ulNumGlobalColors;
  84.     BYTE                   *m_pucGlobalColorMap;
  85.     BYTE                   *m_pOutputBuffer;
  86.     UINT32                  m_ulOutputBufferSize;
  87.     UINT32                  m_ulCurX;
  88.     UINT32                  m_ulCurY;
  89.     UINT32                  m_ulPass;
  90.     BYTE                   *m_pOutPtr;
  91.     UINT32                  m_ulState;
  92.     LZWCodec               *m_pLZWCodec;
  93.     BOOL                    m_bValid;
  94.     void Reset();
  95.     void BumpPixel();
  96. public:
  97.     CGIFImage();
  98.     ~CGIFImage();
  99.     void        SetGlobalColorMap(UINT32 ulNumColors, BYTE *pMap);
  100.     HX_RESULT   SetCompressedBufferSize(UINT32 ulSize);
  101.     HX_RESULT   InitDecompress(BYTE *pBuffer, UINT32 ulLen);
  102.     HX_RESULT   Decompress(BYTE *pBuffer, UINT32 ulLen);
  103.     HX_RESULT   GetIndexImage(BYTE *pLogicalScreen, UINT32 ulWidth, UINT32 ulHeight,
  104.                               UINT32 ulPadWidth, BOOL bRowsInverted);
  105.     HX_RESULT   GetRGBImage(BYTE *pLogicalScreen, UINT32 ulWidth, UINT32 ulHeight, UINT32 ulPadWidth,
  106.                             UINT32 ulBytesPerPixel, BOOL bRowsInverted, BOOL bRGBOrdering,
  107.                             BYTE ucBackRed, BYTE ucBackGreen, BYTE ucBackBlue,
  108.                             BYTE ulAlpha = 0);
  109.     HX_RESULT   GetRGBImageEx(BYTE *pLogicalScreen, UINT32 ulWidth, UINT32 ulHeight, UINT32 ulPadWidth,
  110.                               UINT32 ulBytesPerPixel, BOOL bRowsInverted, BOOL bRGBOrdering,
  111.                               UINT32 ulBgColor, BOOL bMediaOpacity, UINT32 ulMediaOpacity,
  112.                               BOOL bChromaKey, UINT32 ulChromaKey, UINT32 ulChromaKeyTol, UINT32 ulChromaKeyOpacity);
  113.     HX_RESULT   GetRGB32(BYTE *pBuffer, UINT32 ulRowStride, BOOL bRowsInverted);
  114.     void        TermDecompress();
  115.     BYTE       *GetOutputBuffer()                      { return m_pOutputBuffer; }
  116.     BOOL        Finished()                             { return (m_ulState == kStateDecoFinished ? TRUE : FALSE); }
  117.     void        SetFinished()                          { m_ulState = kStateDecoFinished; }
  118.     BOOL        LocalColorMapPresent()                 { return m_cID.m_bLocalColorTablePresent; }
  119.     UINT32      GetImageWidth()                        { return m_cID.m_ulImageWidth;  }
  120.     UINT32      GetImageHeight()                       { return m_cID.m_ulImageHeight; }
  121.     UINT32      GetImageLeft()                         { return m_cID.m_ulImageLeft; }
  122.     UINT32      GetImageTop()                          { return m_cID.m_ulImageTop;  }
  123.     UINT32      GetLocalColorTableNumEntries()         { return m_cID.m_ulLocalColorTableNumEntries; }
  124.     BYTE *GetLocalColorTable()        { return m_pucLocalColorMap; }
  125.     BOOL        GCEPresent()                           { return m_bGCEPresent; }
  126.     UINT32      GetDelayTime();
  127.     UINT32      GetDisposalMethod()                    { return m_cGCE.m_ulDisposalMethod; }
  128.     BOOL        Transparent()                          { return m_cGCE.m_bTransparentIndexGiven; }
  129.     UINT32      GetTransparentIndex()                  { return m_cGCE.m_ulTransparentColorIndex; }
  130.     BOOL        GetValid()                             { return m_bValid; }
  131.     void        SetValid(BOOL bValid)                  { m_bValid = bValid; }
  132.     static void ParseImageDescriptor(BYTE *pBuffer, ImageDescriptor &cID);
  133.     static void ParseGraphicControlExtension(BYTE *pBuffer, GraphicControlExtension &cGCE);
  134. };
  135. inline UINT32 CGIFImage::GetDelayTime()
  136. {
  137.     UINT32 ulRet = m_cGCE.m_ulDelayTime;
  138.     if (!ulRet)
  139.     {
  140.         ulRet = 1;
  141.     }
  142.     return ulRet;
  143. }
  144. #endif