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

IP电话/视频会议

开发平台:

Visual C++

  1. /*
  2.  * File: ximage.h
  3.  * Purpose: General Purpose Image Class 
  4.  */
  5. /* === C R E D I T S  &  D I S C L A I M E R S ==============
  6.  * Permission is given by the author to freely redistribute and include
  7.  * this code in any program as long as this credit is given where due.
  8.  *
  9.  * CxImage (c)  07/Aug/2001 <ing.davide.pizzolato@libero.it>
  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 CImage and CImageIterator implementation are:
  16.  * Copyright: (c) 1995, Alejandro Aguilar Sierra <asierra@servidor.unam.mx>
  17.  *
  18.  * COVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN "AS IS" BASIS, WITHOUT WARRANTY
  19.  * OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES
  20.  * THAT THE COVERED CODE IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE
  21.  * OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED
  22.  * CODE IS WITH YOU. SHOULD ANY COVERED CODE PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT
  23.  * THE INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY
  24.  * SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL
  25.  * PART OF THIS LICENSE. NO USE OF ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT UNDER
  26.  * THIS DISCLAIMER.
  27.  *
  28.  * Use at your own risk!
  29.  * ==========================================================
  30.  */
  31. #if !defined(__MYFXIMAGE_H)
  32. #define __MYFXIMAGE_H
  33. #if _MSC_VER > 1000
  34. #pragma once
  35. #endif 
  36. /////////////////////////////////////////////////////////////////////////////
  37. // CxImage supported features
  38. #define CXIMAGE_SUPPORT_ALPHA          1
  39. #define CXIMAGE_SUPPORT_SELECTION      1
  40. #define CXIMAGE_SUPPORT_TRANSFORMATION 1
  41. #define CXIMAGE_SUPPORT_DSP            1
  42. #define CXIMAGE_SUPPORT_DECODE 1
  43. #define CXIMAGE_SUPPORT_ENCODE 1 //<vho><T.Peck>
  44. #define CXIMAGE_SUPPORT_WINDOWS 1
  45. #define CXIMAGE_SUPPORT_WINCE   0 //<T.Peck>
  46. /////////////////////////////////////////////////////////////////////////////
  47. // CxImage supported formats
  48. #define CXIMAGE_SUPPORT_BMP 1
  49. #define CXIMAGE_SUPPORT_GIF 1
  50. #define CXIMAGE_SUPPORT_JPG 1
  51. #define CXIMAGE_SUPPORT_PNG 1
  52. #define CXIMAGE_SUPPORT_MNG 0
  53. #define CXIMAGE_SUPPORT_ICO 1
  54. #define CXIMAGE_SUPPORT_TIF 1
  55. #define CXIMAGE_SUPPORT_TGA 1
  56. #define CXIMAGE_SUPPORT_PCX 1
  57. #define CXIMAGE_SUPPORT_WBMP 1
  58. #define CXIMAGE_SUPPORT_WMF 1
  59. #define CXIMAGE_SUPPORT_J2K 0 // Beta
  60. #define CXIMAGE_SUPPORT_JBG 0 // Patented! see ../jbig/patents.htm
  61. /////////////////////////////////////////////////////////////////////////////
  62. #include "xfile.h"
  63. #include "xiofile.h"
  64. #include "xmemfile.h"
  65. #include "ximadefs.h" //<vho> adjust some #define
  66. /////////////////////////////////////////////////////////////////////////////
  67. // CxImage formats enumerator
  68. enum ENUM_CXIMAGE_FORMATS{
  69. #if CXIMAGE_SUPPORT_BMP
  70. CXIMAGE_FORMAT_BMP,
  71. #endif
  72. #if CXIMAGE_SUPPORT_GIF
  73. CXIMAGE_FORMAT_GIF,
  74. #endif
  75. #if CXIMAGE_SUPPORT_JPG
  76. CXIMAGE_FORMAT_JPG,
  77. #endif
  78. #if CXIMAGE_SUPPORT_PNG
  79. CXIMAGE_FORMAT_PNG,
  80. #endif
  81. #if CXIMAGE_SUPPORT_MNG
  82. CXIMAGE_FORMAT_MNG,
  83. #endif
  84. #if CXIMAGE_SUPPORT_ICO
  85. CXIMAGE_FORMAT_ICO,
  86. #endif
  87. #if CXIMAGE_SUPPORT_TIF
  88. CXIMAGE_FORMAT_TIF,
  89. #endif
  90. #if CXIMAGE_SUPPORT_TGA
  91. CXIMAGE_FORMAT_TGA,
  92. #endif
  93. #if CXIMAGE_SUPPORT_PCX
  94. CXIMAGE_FORMAT_PCX,
  95. #endif
  96. #if CXIMAGE_SUPPORT_WBMP
  97. CXIMAGE_FORMAT_WBMP,
  98. #endif
  99. #if CXIMAGE_SUPPORT_WMF // <vho> - Windows Metafile
  100. CXIMAGE_FORMAT_WMF,
  101. #endif
  102. #if CXIMAGE_SUPPORT_J2K
  103. CXIMAGE_FORMAT_J2K,
  104. #endif
  105. #if CXIMAGE_SUPPORT_JBG
  106. CXIMAGE_FORMAT_JBG,
  107. #endif
  108. CMAX_IMAGE_FORMATS
  109. };
  110. // needed for png, gif, tga
  111. #define RGB2GRAY(r,g,b) ((b*11 + g*59 + r*30)/100) //color to grey mapping
  112. struct rgb_color { BYTE r,g,b; };
  113. /////////////////////////////////////////////////////////////////////////////
  114. // CxImage class
  115. /////////////////////////////////////////////////////////////////////////////
  116. class DLL_EXP CxImage
  117. {
  118. //extensible information collector
  119. typedef struct tagCxImageInfo {
  120. DWORD dwEffWidth; //DWORD aligned scan line width
  121. BYTE* pImage; //THE IMAGE BITS
  122. void* pGhost; //if this is a ghost, pGhost point to the body
  123. DWORD dwType; //original image format
  124. char szLastError[256]; //debugging
  125. long nProgress; //monitor
  126. long nEscape; //escape
  127. long nBkgndIndex; //used for GIF, PNG, MNG
  128. RGBQUAD nBkgndColor; //used for RGB transparency
  129. BYTE nQuality; //used for JPEG
  130. long nFrame; //used for TIF, GIF, MNG : actual frame
  131. long nNumFrames; //used for TIF, GIF, MNG : total number of frames
  132. DWORD dwFrameDelay; //used for GIF, MNG
  133. long xDPI; //horizontal resolution
  134. long yDPI; //vertical resolution
  135. RECT rSelectionBox; //bounding rectangle
  136. BYTE nAlphaMax; //max opacity (fade)
  137. BYTE bAlphaPaletteEnabled; //true if alpha values in the palette are enabled.
  138. BYTE bEnabled; //enables the painting functions
  139. long xOffset;
  140. long yOffset;
  141. } CXIMAGEINFO;
  142. public:
  143. //constructors
  144. CxImage(DWORD imagetype = 0);
  145. CxImage(DWORD dwWidth, DWORD dwHeight, long wBpp, long imagetype = 0);
  146. CxImage(const CxImage &src, bool copypixels = true, bool copyselection = true, bool copyalpha = true);
  147. CxImage(const char * filename, DWORD imagetype);
  148. CxImage(FILE * stream, DWORD imagetype);
  149. CxImage(CxFile * stream, DWORD imagetype);
  150. CxImage(BYTE * buffer, DWORD size, DWORD imagetype);
  151. virtual ~CxImage();
  152. CxImage& operator = (const CxImage&);
  153. //initializzation
  154. void Destroy();
  155. void* Create(DWORD dwWidth, DWORD dwHeight, long wBpp, long imagetype = 0);
  156. bool CreateFromHANDLE(HANDLE hMem); //Windows objects (clipboard)
  157. void Clear(BYTE bval=0);
  158. void Copy(const CxImage &src, bool copypixels = true, bool copyselection = true, bool copyalpha = true);
  159. HANDLE CopyToHandle();
  160. void Transfer(CxImage &from);
  161. //Attributes
  162. long GetSize();
  163. BYTE* GetBits();
  164. BYTE GetColorType();
  165. HANDLE GetDIB() const {return (HANDLE)pDib;}
  166. DWORD GetHeight() const {return head.biHeight;}
  167. DWORD GetWidth() const {return head.biWidth;}
  168. DWORD GetEffWidth() const {return info.dwEffWidth;}
  169. DWORD GetNumColors() const {return head.biClrUsed;}
  170. WORD GetBpp() const {return head.biBitCount;}
  171. DWORD GetType() const {return info.dwType;}
  172. char* GetLastError() {return info.szLastError;}
  173. const char* GetVersion();
  174. DWORD GetFrameDelay() const {return info.dwFrameDelay;}
  175. void SetFrameDelay(DWORD d) {info.dwFrameDelay=d;}
  176. void GetOffset(long *x,long *y) {*x=info.xOffset; *y=info.yOffset;}
  177. void SetOffset(long x,long y) {info.xOffset=x; info.yOffset=y;}
  178. BYTE GetJpegQuality() const {return info.nQuality;}
  179. void SetJpegQuality(BYTE q) {info.nQuality = q;}
  180. long GetXDPI() const {return info.xDPI;}
  181. long GetYDPI() const {return info.yDPI;}
  182. void SetXDPI(long dpi);
  183. void SetYDPI(long dpi);
  184. long GetProgress() const {return info.nProgress;}
  185. long GetEscape()     const {return info.nEscape;}
  186. void SetProgress(long p) {info.nProgress = p;}
  187. void SetEscape(long i)   {info.nEscape = i;}
  188. long GetTransIndex() const {return info.nBkgndIndex;}
  189. RGBQUAD GetTransColor();
  190. void SetTransIndex(long idx) {info.nBkgndIndex = idx;}
  191. void SetTransColor(RGBQUAD rgb) {info.nBkgndColor = rgb;}
  192. bool IsTransparent() const {return info.nBkgndIndex>=0;} // <vho>
  193. //palette operations
  194. bool IsGrayScale();
  195. bool IsIndexed() {return head.biClrUsed!=0;}
  196. DWORD GetPaletteSize();
  197. RGBQUAD* GetPalette() const;
  198. RGBQUAD GetPaletteColor(BYTE idx);
  199. bool GetRGB(int i, BYTE* r, BYTE* g, BYTE* b);
  200. BYTE GetNearestIndex(RGBQUAD c);
  201. void BlendPalette(COLORREF cr,long perc);
  202. void SetGrayPalette();
  203. void SetPalette(DWORD n, BYTE *r, BYTE *g, BYTE *b);
  204. void SetPalette(RGBQUAD* pPal,DWORD nColors=256);
  205. void SetPalette(rgb_color *rgb,DWORD nColors=256);
  206. void SetPaletteIndex(BYTE idx, BYTE r, BYTE g, BYTE b, BYTE alpha=0);
  207. void SetPaletteIndex(BYTE idx, RGBQUAD c);
  208. void SetPaletteIndex(BYTE idx, COLORREF cr);
  209. void SwapIndex(BYTE idx1, BYTE idx2);
  210. void SetStdPalette();
  211. //pixel operations
  212. bool IsInside(long x, long y);
  213. BYTE GetPixelIndex(long x,long y);
  214. RGBQUAD GetPixelColor(long x,long y);
  215. void SetPixelColor(long x,long y,RGBQUAD c);
  216. void SetPixelIndex(long x,long y,BYTE i);
  217. void SetPixelColor(long x,long y,COLORREF cr);
  218. //painting operations
  219. #if CXIMAGE_SUPPORT_WINCE
  220. long Blt(HDC pDC, long x=0, long y=0);
  221. #endif
  222. #if CXIMAGE_SUPPORT_WINDOWS
  223. HBITMAP MakeBitmap(HDC hdc = NULL);
  224. void CreateFromHBITMAP(HBITMAP hbmp); //Windows resource
  225. long Draw(HDC hdc, long x=0, long y=0, long cx = -1, long cy = -1, RECT* pClipRect = 0);
  226. long Draw(HDC hdc, const RECT& rect, RECT* pClipRect=NULL) { return Draw(hdc, rect.left, rect.top, rect.right - rect.left, rect.bottom - rect.top, pClipRect); }
  227. long Stretch(HDC hdc, long xoffset, long yoffset, long xsize, long ysize);
  228. long Stretch(HDC hdc, const RECT& rect) { return Stretch(hdc, rect.left, rect.top, rect.right - rect.left, rect.bottom - rect.top); }
  229. long Tile(HDC hdc, RECT *rc);
  230. long Draw2(HDC hdc, long x=0, long y=0, long cx = -1, long cy = -1);
  231. long Draw2(HDC hdc, const RECT& rect) { return Draw2(hdc, rect.left, rect.top, rect.right - rect.left, rect.bottom - rect.top); }
  232. #endif //CXIMAGE_SUPPORT_WINDOWS
  233. // file operations
  234. #if CXIMAGE_SUPPORT_DECODE
  235. #ifdef WIN32
  236. bool Load(LPCWSTR filename, DWORD imagetype=0);
  237. bool LoadResource(HRSRC hRes, DWORD imagetype, HMODULE hModule=NULL);
  238. #endif
  239. bool Load(const char * filename, DWORD imagetype=0);
  240. bool Decode(FILE * hFile, DWORD imagetype);
  241. bool Decode(CxFile * hFile, DWORD imagetype);
  242. bool Decode(BYTE * buffer, DWORD size, DWORD imagetype);
  243. #endif //CXIMAGE_SUPPORT_DECODE
  244. #if CXIMAGE_SUPPORT_ENCODE
  245. #ifdef WIN32
  246. bool Save(LPCWSTR filename, DWORD imagetype=0);
  247. #endif
  248. bool Save(const char * filename, DWORD imagetype=0);
  249. bool Encode(FILE * hFile, DWORD imagetype);
  250. bool Encode(CxFile * hFile, DWORD imagetype);
  251. bool Encode(CxFile * hFile, CxImage ** pImages, int pagecount, DWORD imagetype);
  252. bool Encode(FILE *hFile, CxImage ** pImages, int pagecount, DWORD imagetype);
  253. bool Encode(BYTE * &buffer, long &size, DWORD imagetype);
  254. #endif //CXIMAGE_SUPPORT_ENCODE
  255. //misc.
  256. bool IsValid() const {return pDib!=0;}
  257. bool IsEnabled() const {return info.bEnabled!=0;}
  258. void Enable(bool enable=true){info.bEnabled=enable;}
  259. // frame operations
  260. long GetNumFrames() const {return info.nNumFrames;}
  261. long GetFrame() const {return info.nFrame;}
  262. void SetFrame(long nFrame) {info.nFrame=nFrame;}
  263. #if CXIMAGE_SUPPORT_BASICTRANSFORMATIONS
  264. bool GrayScale();
  265. bool Flip();
  266. bool Mirror();
  267. bool RotateLeft(CxImage* iDst = NULL);
  268. bool RotateRight(CxImage* iDst = NULL);
  269. #endif //CXIMAGE_SUPPORT_BASICTRANSFORMATIONS
  270. #if CXIMAGE_SUPPORT_TRANSFORMATION
  271. // image operations
  272. bool Negative();
  273. bool Rotate(float angle, CxImage* iDst = NULL);
  274. bool Rotate180(CxImage* iDst = NULL);
  275. bool Resample(long newx, long newy, int fast = 1);
  276. bool DecreaseBpp(DWORD nbit, bool errordiffusion, RGBQUAD* ppal = 0);
  277. bool IncreaseBpp(DWORD nbit);
  278. bool Dither(long method = 0);
  279. bool Crop(long left, long top, long right, long bottom, CxImage* iDst = NULL);
  280. bool Crop(const RECT& rect, CxImage* iDst = NULL) { return Crop(rect.left, rect.top, rect.right, rect.bottom, iDst); }
  281. #endif //CXIMAGE_SUPPORT_TRANSFORMATION
  282. #if CXIMAGE_SUPPORT_DSP
  283. bool Repair(float radius = 0.25f, long niterations = 1, long colorspace = 0);
  284. bool Combine(CxImage* r,CxImage* g,CxImage* b,CxImage* a, long colorspace = 0);
  285. bool FFT2(CxImage* srcReal, CxImage* srcImag, CxImage* dstReal, CxImage* dstImag, long direction = 1, bool bForceFFT = true, bool bMagnitude = true);
  286. long Histogram(long* red, long* green = 0, long* blue = 0, long* gray = 0, long colorspace = 0);
  287. bool Noise(long level);
  288. bool Median(long Ksize=3);
  289. bool Gamma(float gamma);
  290. bool ShiftRGB(long r, long g, long b);
  291. bool Threshold(BYTE level);
  292. bool Colorize(BYTE hue, BYTE sat);
  293. bool Light(long level, long contrast=100);
  294. float Mean();
  295. bool Filter(long* kernel, long Ksize, long Kfactor, long Koffset);
  296. bool Erode(long Ksize=2);
  297. bool Dilate(long Ksize=2);
  298. void HuePalette(float correction=1);
  299. enum ImageOpType { OpAdd, OpAnd, OpXor, OpOr, OpMask, OpSrcCopy, OpDstCopy, OpSub, OpSrcBlend };
  300. void Mix(CxImage & imgsrc2, ImageOpType op, long lXOffset = 0, long lYOffset = 0);
  301. protected:
  302. bool IsPowerof2(long x);
  303. bool FFT(int dir,int m,double *x,double *y);
  304. bool DFT(int dir,long m,double *x1,double *y1,double *x2,double *y2);
  305. bool RepairChannel(CxImage *ch, float radius);
  306. public:
  307. //color conversion utilities
  308. bool SplitRGB(CxImage* r,CxImage* g,CxImage* b);
  309. bool SplitYUV(CxImage* y,CxImage* u,CxImage* v);
  310. bool SplitHSL(CxImage* h,CxImage* s,CxImage* l);
  311. bool SplitYIQ(CxImage* y,CxImage* i,CxImage* q);
  312. bool SplitXYZ(CxImage* x,CxImage* y,CxImage* z);
  313. RGBQUAD HSLtoRGB(COLORREF cHSLColor);
  314. RGBQUAD RGBtoHSL(RGBQUAD lRGBColor);
  315. RGBQUAD HSLtoRGB(RGBQUAD lHSLColor);
  316. RGBQUAD YUVtoRGB(RGBQUAD lYUVColor);
  317. RGBQUAD RGBtoYUV(RGBQUAD lRGBColor);
  318. RGBQUAD YIQtoRGB(RGBQUAD lYIQColor);
  319. RGBQUAD RGBtoYIQ(RGBQUAD lRGBColor);
  320. RGBQUAD XYZtoRGB(RGBQUAD lXYZColor);
  321. RGBQUAD RGBtoXYZ(RGBQUAD lRGBColor);
  322. #endif //CXIMAGE_SUPPORT_DSP
  323. RGBQUAD RGBtoRGBQUAD(COLORREF cr);
  324. COLORREF RGBQUADtoRGB (RGBQUAD c);
  325. #if CXIMAGE_SUPPORT_SELECTION
  326. //selection
  327. void SelectionClear();
  328. void SelectionCreate();
  329. void SelectionDelete();
  330. void SelectionInvert();
  331. void SelectionAddRect(RECT r);
  332. void SelectionAddEllipse(RECT r);
  333. void SelectionAddPolygon(POINT *points, long npoints);
  334. bool SelectionCopy(CxImage &from);
  335. bool IsInsideSelection(long x, long y);
  336. bool HasSelection(){return pSelection!=0;}
  337. void GetSelectionBox(RECT& r){memcpy(&r,&info.rSelectionBox,sizeof(RECT));}
  338. #endif //CXIMAGE_SUPPORT_SELECTION
  339. #if CXIMAGE_SUPPORT_ALPHA
  340. //Alpha
  341. void AlphaClear();
  342. void AlphaCreate();
  343. void AlphaDelete();
  344. void AlphaInvert();
  345. bool AlphaMirror();
  346. bool AlphaFlip();
  347. bool AlphaCopy(CxImage &from);
  348. bool AlphaSplit(CxImage *dest);
  349. void AlphaStrip();
  350. void AlphaSet(BYTE level);
  351. void AlphaSet(long x,long y,BYTE level);
  352. BYTE AlphaGet(long x,long y);
  353. BYTE AlphaGetMax() const {return info.nAlphaMax;}
  354. void AlphaSetMax(BYTE nAlphaMax) {info.nAlphaMax=nAlphaMax;}
  355. bool HasAlpha(){return pAlpha!=0;}
  356. void AlphaPaletteClear();
  357. void AlphaPaletteEnable(bool enable=true){info.bAlphaPaletteEnabled=enable;}
  358. bool IsAlphaPaletteEnabled(){return info.bAlphaPaletteEnabled!=0;}
  359. bool HasAlphaPalette();
  360. #endif //CXIMAGE_SUPPORT_ALPHA
  361. protected:
  362. void Startup(DWORD imagetype = 0);
  363. void CopyInfo(const CxImage &src);
  364. void Ghost(CxImage *src);
  365. void RGBtoBGR(BYTE *buffer, int length);
  366. float HueToRGB(float n1,float n2, float hue);
  367. void Bitfield2RGB(BYTE *src, WORD redmask, WORD greenmask, WORD bluemask, BYTE bpp);
  368. static int CompareColors(const void *elem1, const void *elem2);
  369. void* pDib; //contains the header, the palette, the pixels
  370.     BITMAPINFOHEADER    head; //stadnard header
  371. CXIMAGEINFO info; //extended information
  372. BYTE* pSelection; //selected region
  373. BYTE* pAlpha; //alpha channel
  374. };
  375. ////////////////////////////////////////////////////////////////////////////
  376. #endif // !defined(__MYFXIMAGE_H)