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

IP电话/视频会议

开发平台:

Visual C++

  1. /*
  2.  * File: ximaj2k.h
  3.  * Purpose: J2K 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.  * CxImageJ2K (c) 04/Aug/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.  * based on LIBJ2K Copyright (c) 2001-2002, David Janssens - All rights reserved.
  14.  *
  15.  * COVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN "AS IS" BASIS, WITHOUT WARRANTY
  16.  * OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES
  17.  * THAT THE COVERED CODE IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE
  18.  * OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED
  19.  * CODE IS WITH YOU. SHOULD ANY COVERED CODE PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT
  20.  * THE INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY
  21.  * SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL
  22.  * PART OF THIS LICENSE. NO USE OF ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT UNDER
  23.  * THIS DISCLAIMER.
  24.  *
  25.  * Use at your own risk!
  26.  * ==========================================================
  27.  */
  28. #if !defined(__ximaJ2K_h)
  29. #define __ximaJ2K_h
  30. #include "ximage.h"
  31. #if CXIMAGE_SUPPORT_J2K
  32. #define LIBJ2K_EXPORTS
  33. extern "C" {
  34. #include "../j2000/j2k.h"
  35. };
  36. class CxImageJ2K: public CxImage
  37. {
  38. public:
  39. CxImageJ2K(): CxImage(CXIMAGE_FORMAT_J2K) {}
  40. // bool Load(const char * imageFileName){ return CxImage::Load(imageFileName,CXIMAGE_FORMAT_J2K);}
  41. // bool Save(const char * imageFileName){ return CxImage::Save(imageFileName,CXIMAGE_FORMAT_J2K);}
  42. bool Decode(CxFile * hFile);
  43. bool Encode(CxFile * hFile);
  44. bool Decode(FILE *hFile) { CxIOFile file(hFile); return Decode(&file); }
  45. bool Encode(FILE *hFile) { CxIOFile file(hFile); return Encode(&file); }
  46. protected:
  47. void j2k_calc_explicit_stepsizes(j2k_tccp_t *tccp, int prec);
  48. void j2k_encode_stepsize(int stepsize, int numbps, int *expn, int *mant);
  49. int j2k_floorlog2(int a);
  50. };
  51. #endif
  52. #endif