JpegModule.h
上传用户:yatsl7111
上传日期:2007-01-08
资源大小:1433k
文件大小:4k
- /********************************************************************
- JpegModule.h - ISee图像浏览器—JPEG图像读写模块定义文件
-
- 版权所有(C) 2000 VCHelp-coPathway-ISee workgroup member
- 这一程序是自由软件,你可以遵照自由软件基金会出版的GNU 通用公共许
- 可证条款来修改和重新发布这一程序。或者用许可证的第二版,或者(根
- 据你的选择)用任何更新的版本。
- 发布这一程序的目的是希望它有用,但没有任何担保。甚至没有适合特定
- 目地的隐含的担保。更详细的情况请参阅GNU通用公共许可证。
- 你应该已经和程序一起收到一份GNU通用公共许可证的副本。如果还没有,
- 写信给:
- The Free Software Foundation, Inc., 675 Mass Ave, Cambridge,
- MA02139, USA
- 如果你在使用本软件时有什么问题或建议,用以下地址可以与我们取得联
- 系:
- http://isee.126.com
- http://www.vchelp.net
- 或:
- iseesoft@china.com
- 编写人:orbit
- E-Mail:Inte2000@263.net
- 文件版本:
- Beta 1.5
- Build 01209
- Date 2000-12-9
- ********************************************************************/
- #if !defined(AFX_JPEGMODULE_H__C03B0EA9_460A_11D4_8853_C6A14464AE19__INCLUDED_)
- #define AFX_JPEGMODULE_H__C03B0EA9_460A_11D4_8853_C6A14464AE19__INCLUDED_
- #if _MSC_VER > 1000
- #pragma once
- #endif // _MSC_VER > 1000
- #ifndef __AFXWIN_H__
- #error include 'stdafx.h' before including this file for PCH
- #endif
- #include "resource.h" // main symbols
- #ifdef __cplusplus
- extern "C" {
- #endif // __cplusplus
- #undef HAVE_BOOLEAN
- #include "Jpeglib2JpegLib.h"
- #ifdef __cplusplus
- }
- #endif // __cplusplus
- #include <setjmp.h>
- struct my_error_mgr {
- struct jpeg_error_mgr pub;
- jmp_buf setjmp_buffer;
- };
- typedef struct my_error_mgr * my_error_ptr;
- /////////////////////////////////////////////////////////////////////////////
- // CJpegModuleApp
- // See JpegModule.cpp for the implementation of this class
- class CJpegModuleApp : public CWinApp
- {
- public:
- CJpegModuleApp();
- // Overrides
- // ClassWizard generated virtual function overrides
- //{{AFX_VIRTUAL(CJpegModuleApp)
- //}}AFX_VIRTUAL
- //{{AFX_MSG(CJpegModuleApp)
- // NOTE - the ClassWizard will add and remove member functions here.
- // DO NOT EDIT what you see in these blocks of generated code !
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- };
- #define JPG_SOI_MARK 0xD8FF
- #define CHECK_JPG_SOI(type) ( (type)==JPG_SOI_MARK )
- // 定义模块版本
- #define MODULE_BUILDID 15
- //copy from BmpMoudle.h
- #define DIBSCANLINE_WIDTHBYTES(bits) (((bits)+31)/32*4)
- // 目标图位深度格式
- enum DESFORMAT
- {
- DF_NULL, // 无效的目标格式
- DF_16_555, // 16位555格式(也就是15位图像)
- DF_16_565, // 16位565格式
- DF_24, // 24位格式
- DF_32, // 32位格式
- DF_MAX // 有效值边界
- };
- // 接口函数声明 — 第一层,唯一与外界联系的接口
- int WINAPI AccessJPEGModule(INFOSTR *pInfo);
- // 命令解释函数 — 第二层解释函数
- void _fnCMD_GETPROCTYPE(INFOSTR *pInfo);
- void _fnCMD_GETWRITERS(INFOSTR *pInfo);
- void _fnCMD_GETWRITERMESS(INFOSTR *pInfo);
- void _fnCMD_GETBUILDID(INFOSTR *pInfo);
- void _fnCMD_IS_VALID_FILE(INFOSTR *pInfo);
- void _fnCMD_GET_FILE_INFO(INFOSTR *pInfo);
- void _fnCMD_LOAD_FROM_FILE(INFOSTR *pInfo);
- void _fnCMD_SAVE_TO_FILE(INFOSTR *pInfo);
- void _fnCMD_IS_SUPPORT(INFOSTR *pInfo);
- void _fnCMD_RESIZE(INFOSTR *pInfo);
- // 内部执行函数 - 第三层执行函数.....
- METHODDEF(void) my_error_exit (j_common_ptr cinfo);
- IMGCOMPRESS CompressType(J_COLOR_SPACE jcs);
- DESFORMAT _get_desformat(LPINFOSTR pInfo);
- BOOL GetRGBBuf(LPINFOSTR pInfo,LPBYTE lpRBGBuf);
- BOOL GetGRAYBuf(LPINFOSTR pInfo,LPBYTE lpGRAYBuf);
- /////////////////////////////////////////////////////////////////////////////
- //{{AFX_INSERT_LOCATION}}
- // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
- #endif // !defined(AFX_JPEGMODULE_H__C03B0EA9_460A_11D4_8853_C6A14464AE19__INCLUDED_)