Home   Index   About
Ultimate Pack


Custom Search
Printing a Document

Once the application initializes the necessary variables, registers its AbortProc function, and displays its modeless Cancel dialog box, it can start the print job by calling the StartDoc function.

After the application begins a print job, it can define individual pages in the document by calling the StartPage and EndPage functions and embedding the appropriate calls to GDI drawing functions within this bracket. After the application has defined the last page, it can close the document and end the print job by calling the EndDoc function.

The following example shows the code required to print a string of text and a bitmapped image. The string of text, centered at the top of the page, identifies the path and filename for the file that contains the bitmapped image. The bitmapped image, centered vertically and horizontally on the page, is drawn so that the same proportions used to draw the image in the application's window are maintained.

/*

* Initialize the members of a DOCINFO

* structure.

*/

di.cbSize = sizeof(DOCINFO);

di.lpszDocName = "Bitmap Printing Test";

di.lpszOutput = (LPTSTR) NULL;

di.lpszDataType = (LPTSTR) NULL;

di.fwType = 0;

/*

* Begin a print job by calling the StartDoc

* function.

*/

nError = StartDoc(pd.hDC, &di);

if (nError == SP_ERROR) {

errhandler("StartDoc", hwnd);

goto Error;

}

/*

* Inform the driver that the application is

* about to begin sending data.

*/

nError = StartPage(pd.hDC);

if (nError <= 0) {

errhandler("StartPage", hwnd);

goto Error;

}

/*

* Retrieve the number of pixels-per-logical-inch

* in the horizontal and vertical directions

* for the display upon which the bitmap

* was created.

*/

fLogPelsX1 = (float) GetDeviceCaps(pd.hDC, LOGPIXELSX);

fLogPelsY1 = (float) GetDeviceCaps(pd.hDC, LOGPIXELSY);

/*

* Retrieve the number of pixels-per-logical-inch

* in the horizontal and vertical directions

* for the printer upon which the bitmap

* will be printed.

*/

fLogPelsX2 = (float) GetDeviceCaps(pd.hDC,

LOGPIXELSX);

fLogPelsY2 = (float) GetDeviceCaps(pd.hDC,

LOGPIXELSY);

/*

* Determine the scaling factors required to

* print the bitmap and retain its original

* proportions.

*/

if (fLogPelsX1 > fLogPelsX2)

fScaleX = (fLogPelsX1 / fLogPelsX2);

else

fScaleX = (fLogPelsX2 / fLogPelsX1);

if (fLogPelsY1 > fLogPelsY2)

fScaleY = (fLogPelsY1 / fLogPelsY2);

else

fScaleY = (fLogPelsY2 / fLogPelsY1);

/*

* Compute the coordinate of the upper left

* corner of the centered bitmap.

*/

cWidthPels = GetDeviceCaps(pd.hDC, HORZRES);

xLeft = ((cWidthPels / 2) -

((int) (((float) bmih.biWidth)

* fScaleX)) / 2);

cHeightPels = GetDeviceCaps(pd.hDC, VERTRES);

yTop = ((cHeightPels / 2) -

((int) (((float) bmih.biHeight)

* fScaleY)) / 2);

/*

* Create a memory DC that is compatible with

* the printer and select the bitmap (which

* the user requested) into this DC.

*/

hdcMem = CreateCompatibleDC(pd.hDC);

if (!SelectObject(hdcMem, hbm))

errhandler("SelectObject Failed", hwnd);

/*

* Use the StretchBlt function to scale the

* bitmap and maintain its original proportions

* (that is, if the bitmap was square when it

* appeared in the application's client area,

* it should also appear square on the page).

*/

if (!StretchBlt(pd.hDC, xLeft, yTop,

(int) ((float) bmih.biWidth * fScaleX),

(int) ((float) bmih.biHeight * fScaleY),

hdcMem, 0, 0,

bmih.biWidth, bmih.biHeight,

SRCCOPY))

errhandler("StretchBlt Failed", hwnd);

/* Delete the memory DC. */

DeleteDC(hdcMem);

/*

* Retrieve the width of the string that

* specifies the full path and filename for the

* file that contains the bitmap.

*/

GetTextExtentPoint32(pd.hDC, ofn.lpstrFile,

ofn.nFileExtension + 3,

&szMetric);

/*

* Compute the starting point for the

* text-output operation. The string will

* be centered horizontally and positioned

* three-lines down from the top of the page.

*/

xLeft = ((cWidthPels / 2) - (szMetric.cx / 2));

yTop = (szMetric.cy * 3);

/*

* Print the path and filename for the bitmap,

* centered at the top of the page.

*/

TextOut(pd.hDC, xLeft, yTop, ofn.lpstrFile,

ofn.nFileExtension + 3);

/*

* Determine whether the user has pressed

* the Cancel button in the AbortPrintJob

* dialog box; if the button has been pressed,

* call the AbortDoc function. Otherwise, inform

* the spooler that the page is complete.

*/

nError = EndPage(pd.hDC);

if (nError <= 0) {

errhandler("EndPage", hwnd);

goto Error;

}

/* Inform the driver that document has ended. */

nError = EndDoc(pd.hDC);

if (nError <= 0)

errhandler("EndDoc", hwnd);

Error:

/* Enable the application's window. */

EnableWindow(hwnd, TRUE);

/* Remove the AbortPrintJob dialog box. */

DestroyWindow(hdlgCancel);

/* Delete the printer DC. */

DeleteDC(pd.hDC);

Because the pixels on a screen typically have different dimensions than the dots on a printer, it is necessary to scale bitmapped images to obtain a WYSIWYG effect. This is done by obtaining horizontal and vertical scaling factors and then applying those factors to the width and height values passed to the StretchBlt function. In the sample application, the scaling factors were obtained by retrieving the horizontal and vertical logical-pixel count for the two devices. Once the scaling factors were obtained, they were used to adjust the bitmap width and height.

To center the bitmap on the page, the application first computed the width and height of the scaled bitmap. (The bitmap was scaled to maintain the original proportions of the image.) These values were divided by two and then subtracted from half of the width and height of the page. The result defines the coordinates of the upper left corner of the bitmap.

To center the text at the top of the page, the application called the GetTextExtentPoint32 function to retrieve the width and height of the string specifying the path names and filenames. Once these values were obtained, the application used the height to position the string three lines down the page and the width to position the string horizontally centered on the page.

The following illustration shows a representation of the page that appeared when the application printed the bitmapped image in the WINLOGO.BMP file. This illustration also depicts the variables used to position the text and to position and scale the bitmap.

pics/WIN3200000096.gif


Last news from Greatis Software

Nostalgia .Net     Nostalgia .Net     .Net is powerful, but not all-powerful, so sometimes we need to use Win32 API for our .Net applications. It's simple enough with Platform Invoke if you have Win32 skill, but we do not always have time to dig the ancient documentation, declare the special types that are compatible with Win32, find the values of the Win32's constants and so on. Nostalgia .Net offers several simple-to-use classes, and components that will allow you to forget about the headache of Win32 and just use the power of Win32 in your application the same way as you use the native. Net classes.  More »

Recommended software for developers

Ultimate Pack for Delphi and C++ Builder     Ultimate Pack     Component pack for Delphi and C++ Builder that contains runtime form designer, runtime object inspector, print suite and much more for the very special price.  More »

Form Designer .Net     Form Designer .Net     Unique runtime form design solution that allows to edit any form in .Net WinForms application at runtime with full source codes for only 300 euro!  More »

Print Suite .Net     Print Suite .Net     Print Suite .Net is a set of components for easy printing texts, images and grids from your WinForms applications. Full C# source codes are available  More »

Gradient Controls .Net     Gradient Controls .Net     Gradient Controls .Net offers controls with gradient background feature. Labels, panels and so on... Full C# source codes are available  More »

iGrid     Greatis iGrid     iGrid plots drawing grid right over your desktop, so you can use it everywhere, with any drawing application without any special plugins for different graphic editors.  More »


All the contacts and projects

Dmitry Vasiliev (just.dmitry)

Related Links

Software for Visual Studio .NET developers
Software for Delphi and C++ Builder developers
Software for Visual Basic 6 developers
Delphi Tips&Tricks
MegaDetailed.NET

More Online Helps

Win32 Programmer's Reference
Win32 Multimedia Programmer's Reference
OLE Programmer's Reference
Microsoft Windows Pen API Programmer's Reference
Microsoft Windows Sockets 2 Reference
Microsoft Windows Telephony API (TAPI) Programmer's Reference
Unix Manual Pages

Free Tech Secrets ;) Copyright © 2008-2012 Free Tech Secrets ;) greatis just4fun network just4fun