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

IP电话/视频会议

开发平台:

Visual C++

  1. /*
  2.  * File: ximamng.h
  3.  * Purpose: Declaration of the MNG Image Class
  4.  * Author: ing.davide.pizzolato@libero.it
  5.  * Created: 2001
  6.  */
  7. /* === C R E D I T S  &  D I S C L A I M E R S ==============
  8.  * CxImageMNG (c) 07/Aug/2001 <ing.davide.pizzolato@libero.it>
  9.  * Permission is given by the author to freely redistribute and include
  10.  * this code in any program as long as this credit is given where due.
  11.  *
  12.  * CxImage version 5.00 23/Aug/2002
  13.  * See the file history.htm for the complete bugfix and news report.
  14.  *
  15.  * Special thanks to Frank Haug <f.haug@jdm.de> for suggestions and code.
  16.  *
  17.  * original mng.cpp code created by Nikolaus Brennig, November 14th, 2000. <virtualnik@nol.at>
  18.  *
  19.  * LIBMNG Copyright (c) 2000,2001 Gerard Juyn (gerard@libmng.com)
  20.  *
  21.  * COVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN "AS IS" BASIS, WITHOUT WARRANTY
  22.  * OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES
  23.  * THAT THE COVERED CODE IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE
  24.  * OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED
  25.  * CODE IS WITH YOU. SHOULD ANY COVERED CODE PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT
  26.  * THE INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY
  27.  * SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL
  28.  * PART OF THIS LICENSE. NO USE OF ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT UNDER
  29.  * THIS DISCLAIMER.
  30.  *
  31.  * Use at your own risk!
  32.  * ==========================================================
  33.  */
  34. #if !defined(__ximaMNG_h)
  35. #define __ximaMNG_h
  36. #include "ximage.h"
  37. #if CXIMAGE_SUPPORT_MNG
  38. //#define MNG_NO_CMS
  39. #define MNG_SUPPORT_DISPLAY
  40. #define MNG_SUPPORT_READ
  41. #define MNG_SUPPORT_WRITE
  42. #define MNG_ACCESS_CHUNKS
  43. #define MNG_STORE_CHUNKS
  44. extern "C" {
  45. #include "../mng/libmng.h"
  46. #include "../mng/libmng_data.h"
  47. }
  48. //unsigned long _stdcall RunMNGThread(void *lpParam);
  49. typedef struct tagmngstuff 
  50. {
  51. CxFile *file;
  52. BYTE *image;
  53. HANDLE thread;
  54. mng_uint32 delay;
  55. mng_uint32  width;
  56. mng_uint32  height;
  57. mng_uint32  effwdt;
  58. mng_int16 bpp;
  59. mng_bool animation;
  60. mng_bool animation_enabled;
  61. float speed;
  62. long nBkgndIndex;
  63. RGBQUAD nBkgndColor;
  64. } mngstuff;
  65. class CxImageMNG: public CxImage
  66. {
  67. public:
  68. CxImageMNG();
  69. ~CxImageMNG();
  70. bool Load(const char * imageFileName);
  71. bool Save(const char * imageFileName){ return CxImage::Save(imageFileName,CXIMAGE_FORMAT_MNG);}
  72. bool Decode(CxFile * hFile);
  73. bool Encode(CxFile * hFile);
  74. bool Decode(FILE *hFile) { CxIOFile file(hFile); return Decode(&file); }
  75. bool Encode(FILE *hFile) { CxIOFile file(hFile); return Encode(&file); }
  76. long Resume();
  77. void SetSpeed(float speed);
  78. mng_handle hmng;
  79. mngstuff mnginfo;
  80. protected:
  81. void WritePNG(mng_handle hMNG, int Frame, int FrameCount );
  82. void SetCallbacks(mng_handle mng);
  83. };
  84. #endif
  85. #endif