Dib.h
上传用户:joy_gong
上传日期:2020-11-30
资源大小:459k
文件大小:1k
源码类别:

生物技术

开发平台:

Visual C++

  1. // Dib.h: interface for the CDib class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_DIB_H__3E3EC543_A4C5_11D0_B4B0_0000B43BAF07__INCLUDED_)
  5. #define AFX_DIB_H__3E3EC543_A4C5_11D0_B4B0_0000B43BAF07__INCLUDED_
  6. #if _MSC_VER >= 1000
  7. #pragma once
  8. #endif // _MSC_VER >= 1000
  9. #include <vfw.h>
  10. #pragma comment(lib,"vfw32.lib")
  11. class CDib : public CObject  
  12. {
  13. public:
  14. CDib();
  15. virtual ~CDib();
  16. //Attributes
  17. public:
  18. BYTE    *GetBits();
  19. CSize  GetSize();
  20. LONG  GetWidth();
  21. LONG  GetHeight();
  22. int      GetBiBitCount();
  23. BOOL     IsValid()  { return(m_hDrawDib!=NULL); }
  24. operator HDRAWDIB() { return m_hDrawDib; }
  25. //operations
  26. public:
  27. BOOL Open(const char *pzFileName);
  28. BOOL Save(const char *pzFileName);
  29. void Draw(CDC *pDC,int nWidth, int nHeight);
  30. void Close();
  31. //public parameters
  32. BYTE *m_pDibBits;
  33. //implementation
  34. public:
  35. BYTE *m_pDib;
  36. HDRAWDIB m_hDrawDib;
  37. BITMAPFILEHEADER bmpFileHeader;
  38. };
  39. #endif // !defined(AFX_DIB_H__3E3EC543_A4C5_11D0_B4B0_0000B43BAF07__INCLUDED_)