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

Internet/IE编程

开发平台:

Visual C++

  1. /*
  2.  * File: ximaraw.h
  3.  * Purpose: RAW Image Class Loader and Writer
  4.  */
  5. /* ==========================================================
  6.  * CxImageRAW (c) May/2006 pdw63
  7.  * For conditions of distribution and use, see copyright notice in ximage.h
  8.  * Special thanks to David Coffin for dcraw without which this class would not exist
  9.  *
  10.  * libdcr (c) Dec/2007 Davide Pizzolato - www.xdp.it
  11.  *
  12.  * based on dcraw.c -- Dave Coffin's raw photo decoder
  13.  * Copyright 1997-2007 by Dave Coffin, dcoffin a cybercom o net
  14.  * ==========================================================
  15.  */
  16. #if !defined(__ximaRAW_h)
  17. #define __ximaRAW_h
  18. #include "ximage.h"
  19. #if CXIMAGE_SUPPORT_RAW
  20. extern "C" {
  21.  #include "../raw/libdcr.h"
  22. }
  23. class CxImageRAW: public CxImage
  24. {
  25. public:
  26. CxImageRAW(): CxImage(CXIMAGE_FORMAT_RAW) {}
  27. // bool Load(const char * imageFileName){ return CxImage::Load(imageFileName,CXIMAGE_FORMAT_ICO);}
  28. // bool Save(const char * imageFileName){ return CxImage::Save(imageFileName,CXIMAGE_FORMAT_ICO);}
  29. bool Decode(CxFile * hFile);
  30. bool Decode(FILE *hFile) { CxIOFile file(hFile); return Decode(&file); }
  31. #if CXIMAGE_SUPPORT_ENCODE
  32. bool Encode(CxFile * hFile);
  33. bool Encode(FILE *hFile) { CxIOFile file(hFile); return Encode(&file); }
  34. #endif // CXIMAGE_SUPPORT_ENCODE
  35. enum CODEC_OPTION
  36. {
  37. DECODE_QUALITY_LIN = 0x00,
  38. DECODE_QUALITY_VNG = 0x01,
  39. DECODE_QUALITY_PPG = 0x02,
  40. DECODE_QUALITY_AHD = 0x03,
  41. }; 
  42. protected:
  43. class CxFileRaw
  44. {
  45. public:
  46. CxFileRaw(CxFile* pFile,DCRAW *stream)
  47. {
  48. stream->obj_ = pFile;
  49. ras_stream_CxFile.read_ = raw_sfile_read;
  50. ras_stream_CxFile.write_ = raw_sfile_write;
  51. ras_stream_CxFile.seek_ = raw_sfile_seek;
  52. ras_stream_CxFile.close_ = raw_sfile_close;
  53. ras_stream_CxFile.gets_ = raw_sfile_gets;
  54. ras_stream_CxFile.eof_ = raw_sfile_eof;
  55. ras_stream_CxFile.tell_ = raw_sfile_tell;
  56. ras_stream_CxFile.getc_ = raw_sfile_getc;
  57. ras_stream_CxFile.scanf_ = raw_sfile_scanf;
  58. stream->ops_ = &ras_stream_CxFile;
  59. }
  60. static int raw_sfile_read(dcr_stream_obj *obj, void *buf, int size, int cnt)
  61. { return ((CxFile*)obj)->Read(buf,size,cnt); }
  62. static int raw_sfile_write(dcr_stream_obj *obj, void *buf, int size, int cnt)
  63. { return ((CxFile*)obj)->Write(buf,size,cnt); }
  64. static long raw_sfile_seek(dcr_stream_obj *obj, long offset, int origin)
  65. { return ((CxFile*)obj)->Seek(offset,origin); }
  66. static int raw_sfile_close(dcr_stream_obj *obj)
  67. { return 1; /*((CxFile*)obj)->Close();*/ }
  68. static char* raw_sfile_gets(dcr_stream_obj *obj, char *string, int n)
  69. { return ((CxFile*)obj)->GetS(string,n); }
  70. static int   raw_sfile_eof(dcr_stream_obj *obj)
  71. { return ((CxFile*)obj)->Eof(); }
  72. static long  raw_sfile_tell(dcr_stream_obj *obj)
  73. { return ((CxFile*)obj)->Tell(); }
  74. static int   raw_sfile_getc(dcr_stream_obj *obj)
  75. { return ((CxFile*)obj)->GetC(); }
  76. static int   raw_sfile_scanf(dcr_stream_obj *obj,const char *format, void* output)
  77. { return ((CxFile*)obj)->Scanf(format, output); }
  78. private:
  79. dcr_stream_ops ras_stream_CxFile;
  80. };
  81. };
  82. #endif
  83. #endif