pdf417doc.h

来自「对位图文件中的点阵数据进行模式判别,找出其中的完整PDF417条码,并按照GB/」· C头文件 代码 · 共 67 行

H
67
字号
// pdf417Doc.h : interface of the CPdf417Doc class
//
/////////////////////////////////////////////////////////////////////////////

#if !defined(AFX_PDF417DOC_H__3507ABEB_3F26_11D5_B583_B75AE997F823__INCLUDED_)
#define AFX_PDF417DOC_H__3507ABEB_3F26_11D5_B583_B75AE997F823__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000


class CPdf417Doc : public CDocument
{
protected: // create from serialization only
	CPdf417Doc();
	DECLARE_DYNCREATE(CPdf417Doc)

// Attributes
public:
	int Height;
	int Width;
	UINT* m_middata;
	CString m_data;
	int m_bmpBitsPixel;
	int m_bmpheight;
	int m_bmpwidth;
	CString m_filename;

// Operations
public:

// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CPdf417Doc)
	public:
	virtual BOOL OnNewDocument();
	virtual void Serialize(CArchive& ar);
	virtual BOOL OnOpenDocument(LPCTSTR lpszPathName);
	//}}AFX_VIRTUAL

// Implementation
public:
	virtual ~CPdf417Doc();
#ifdef _DEBUG
	virtual void AssertValid() const;
	virtual void Dump(CDumpContext& dc) const;
#endif

protected:

// Generated message map functions
protected:
	//{{AFX_MSG(CPdf417Doc)
	afx_msg void OnFileOpen();
	afx_msg void OnAct();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

/////////////////////////////////////////////////////////////////////////////

//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.

#endif // !defined(AFX_PDF417DOC_H__3507ABEB_3F26_11D5_B583_B75AE997F823__INCLUDED_)

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?