ximacfg.h
上传用户:pass2008
上传日期:2021-07-05
资源大小:3299k
文件大小:2k
源码类别:

Internet/IE编程

开发平台:

Visual C++

  1. #if !defined(__ximaCFG_h)
  2. #define __ximaCFG_h
  3. /////////////////////////////////////////////////////////////////////////////
  4. // CxImage supported features
  5. #define CXIMAGE_SUPPORT_ALPHA          1
  6. #define CXIMAGE_SUPPORT_SELECTION      1
  7. #define CXIMAGE_SUPPORT_TRANSFORMATION 1
  8. #define CXIMAGE_SUPPORT_DSP            1
  9. #define CXIMAGE_SUPPORT_LAYERS    1
  10. #define CXIMAGE_SUPPORT_INTERPOLATION  1
  11. #define CXIMAGE_SUPPORT_DECODE 1
  12. #define CXIMAGE_SUPPORT_ENCODE 1 //<vho><T.Peck>
  13. #define CXIMAGE_SUPPORT_WINDOWS 1
  14. /////////////////////////////////////////////////////////////////////////////
  15. // CxImage supported formats
  16. #define CXIMAGE_SUPPORT_BMP 1
  17. #define CXIMAGE_SUPPORT_GIF 1
  18. #define CXIMAGE_SUPPORT_JPG 1
  19. #define CXIMAGE_SUPPORT_PNG 1
  20. #define CXIMAGE_SUPPORT_ICO 1
  21. #define CXIMAGE_SUPPORT_TIF 1
  22. #define CXIMAGE_SUPPORT_TGA 1
  23. #define CXIMAGE_SUPPORT_PCX 1
  24. #define CXIMAGE_SUPPORT_WBMP 1
  25. #define CXIMAGE_SUPPORT_WMF 1
  26. #define CXIMAGE_SUPPORT_JP2 1
  27. #define CXIMAGE_SUPPORT_JPC 1
  28. #define CXIMAGE_SUPPORT_PGX 1
  29. #define CXIMAGE_SUPPORT_PNM 1
  30. #define CXIMAGE_SUPPORT_RAS 1
  31. #define CXIMAGE_SUPPORT_JBG 0 // GPL'd see ../jbig/copying.txt & ../jbig/patents.htm
  32. #define CXIMAGE_SUPPORT_MNG 1
  33. #define CXIMAGE_SUPPORT_SKA 1
  34. #define CXIMAGE_SUPPORT_RAW 1
  35. /////////////////////////////////////////////////////////////////////////////
  36. #define CXIMAGE_MAX_MEMORY 268435456
  37. #define CXIMAGE_DEFAULT_DPI 96
  38. #define CXIMAGE_ERR_NOFILE "null file handler"
  39. #define CXIMAGE_ERR_NOIMAGE "null image!!!"
  40. #define CXIMAGE_SUPPORT_EXCEPTION_HANDLING 1
  41. /////////////////////////////////////////////////////////////////////////////
  42. //color to grey mapping <H. Muelner> <jurgene>
  43. //#define RGB2GRAY(r,g,b) (((b)*114 + (g)*587 + (r)*299)/1000)
  44. #define RGB2GRAY(r,g,b) (((b)*117 + (g)*601 + (r)*306) >> 10)
  45. #endif