IMABMP.H
上传用户:wep9318
上传日期:2007-01-07
资源大小:893k
文件大小:1k
源码类别:

图片显示

开发平台:

Visual C++

  1. /*
  2.  * File: imajpg.h
  3.  * Purpose: Declaration of the Platform Independent JPEG Image Class
  4.  * Author: Alejandro Aguilar Sierra
  5.  * Created: 1995
  6.  * Copyright: (c) 1995, Alejandro Aguilar Sierra <asierra@servidor.unam.mx>
  7.  *
  8.  * This software is based in part on the work of the Independent JPEG Group.
  9.  *
  10.  */
  11. #if !defined(__ImaBMP_h)
  12. #define __ImaBMP_h
  13. #include "imafile.h"
  14. class CImageBMP: public CFileImageImpl
  15. {
  16. public:
  17.   CImageBMP::CImageBMP( const CBitmap* bmp);
  18.   CImageBMP(const CImageBMP* ima): CFileImageImpl(ima) {}
  19.   CImageBMP(const CString& imageFileName): CFileImageImpl(imageFileName) {}
  20.   ~CImageBMP() {};
  21.   BOOL ReadFile(const CString& imageFileName="");
  22.   BOOL SaveFile(const CString& imageFileName="");
  23. };
  24. #endif