Click here to Skip to main content
15,897,187 members
Articles / Desktop Programming / MFC

Capture an HTML document as an image

,
Rate me:
Please Sign up or sign in to vote.
4.88/5 (62 votes)
19 May 2004CPOL15 min read 588.2K   12.9K   194  
Capturing HTML documents as images
// VTHtmlThumbnailDlg.h : header file
//

#include "afxwin.h"
#if !defined(AFX_VTHTMLTHUMBNAILDLG_H__3556824F_36D8_49F7_A53C_ABE9E9C4535F__INCLUDED_)
#define AFX_VTHTMLTHUMBNAILDLG_H__3556824F_36D8_49F7_A53C_ABE9E9C4535F__INCLUDED_

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

#include "CreateHTMLImage.h"
#include "ImagePreviewStatic.h"
#include "afxmt.h"
#include "vtcreatehtmlimage.h"
#include "VTImagePreviewStatic.h"

/////////////////////////////////////////////////////////////////////////////
// CVTHtmlThumbnailDlg dialog

class CVTHtmlThumbnailDlg : public CDialog
{
// Construction
public:
	CVTHtmlThumbnailDlg(CWnd* pParent = NULL);	// standard constructor

// Dialog Data
	//{{AFX_DATA(CVTHtmlThumbnailDlg)
	enum { IDD = IDD_VTHTMLTHUMBNAIL_DIALOG };
		// NOTE: the ClassWizard will add data members here
	//}}AFX_DATA

	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CVTHtmlThumbnailDlg)
	protected:
	virtual void DoDataExchange(CDataExchange* pDX);	// DDX/DDV support
	//}}AFX_VIRTUAL

// Implementation
protected:
	HICON m_hIcon;

	// Generated message map functions
	//{{AFX_MSG(CVTHtmlThumbnailDlg)
	virtual BOOL OnInitDialog();
	afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
	afx_msg void OnPaint();
	afx_msg HCURSOR OnQueryDragIcon();
	//}}AFX_MSG
	afx_msg LRESULT OnDocumentComplete(WPARAM wParam, LPARAM lParam);
	DECLARE_MESSAGE_MAP()
public:
	CVTImagePreviewStatic m_StaticThumbnail1;
	CVTImagePreviewStatic m_StaticThumbnail2;
	CVTImagePreviewStatic m_StaticThumbnail3;
	CVTImagePreviewStatic m_StaticThumbnail4;
	CVTImagePreviewStatic m_StaticThumbnail5;
	CVTImagePreviewStatic m_StaticThumbnail6;
	afx_msg void OnBnClickedButton1();

	int m_iDocumentsComplete;
	CString m_csStatus;
	void EnableButtons(bool bEnable);
	CVTCreateHTMLImage *m_pHTMLImage;
	afx_msg void OnDestroy();
};

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

#endif // !defined(AFX_VTHTMLTHUMBNAILDLG_H__3556824F_36D8_49F7_A53C_ABE9E9C4535F__INCLUDED_)

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
United States United States
I've been programming for 35 years - started in machine language on the National Semiconductor SC/MP chip, moved via the 8080 to the Z80 - graduated through HP Rocky Mountain Basic and HPL - then to C and C++ and now C#.

I used (30 or so years ago when I worked for Hewlett Packard) to repair HP Oscilloscopes and Spectrum Analysers - for a while there I was the one repairing DC to daylight SpecAns in the Asia Pacific area.

Afterward I was the fourth team member added to the Australia Post EPOS project at Unisys Australia. We grew to become an A$400 million project. I wrote a few device drivers for the project under Microsoft OS/2 v 1.3 - did hardware qualification and was part of the rollout team dealing directly with the customer.

Born and bred in Melbourne Australia, now living in Scottsdale Arizona USA, became a US Citizen on September 29th, 2006.

I work for a medical insurance broker, learning how to create ASP.NET websites in VB.Net and C#. It's all good.

Oh, I'm also a Kentucky Colonel. http://www.kycolonels.org

Written By
Web Developer
United States United States
Technical Evangelist and Computer Programmer. OS of choice is any Win32 OS. Started working in the gaming industry, programming mainframe VOS OS and dealing with Slot machine serials comms protocols, creating test-tools and line monitoring software on W2K.

Moved on to working in a small software company that worked with electronic forms.

Next, worked at a company with Security, Identity and Trust Solutions. Learnt lots about encryption, signing, digital signatures, hashing and all sorts of new buzz words. It might as well be another language.

Now at Nintex. World class workflow software vendor and am a Technical Evangelist. IF you're looking to automate business processes, this is the place to look.

Comments and Discussions