通过提供打印机句柄进行打印
Graphics 类的构造函数之一接收设备上下文句柄和打印机句柄。 将 Windows GDI+ 命令发送到某些 PostScript 打印机时,如果使用该特定构造函数创建 Graphics 对象,性能会更好。
以下控制台应用程序调用 GetDefaultPrinter 以获取默认打印机的名称。 该代码将打印机名称传递给 CreateDC ,以获取打印机的设备上下文句柄。 该代码还会将打印机名称传递给 OpenPrinter 以获取打印机句柄。 设备上下文句柄和打印机句柄都传递给 图形 构造函数。 然后,在打印机上绘制两个图形。
注意
GetDefaultPrinter 函数仅在 Windows 2000 及更高版本上受支持。
#include <windows.h>
#include <gdiplus.h>
#include <stdio.h>
using namespace Gdiplus;
INT main()
{
// Initialize GDI+.
GdiplusStartupInput gdiplusStartupInput;
ULONG_PTR gdiplusToken;
GdiplusStartup(&gdiplusToken, &gdiplusStartupInput, NULL);
DWORD size;
HDC hdcPrint;
HANDLE printerHandle;
DOCINFO docInfo;
ZeroMemory(&docInfo, sizeof(docInfo));
docInfo.cbSize = sizeof(docInfo);
docInfo.lpszDocName = "GdiplusPrint";
// Get the length of the printer name.
GetDefaultPrinter(NULL, &size);
TCHAR* buffer = new TCHAR[size];
// Get the printer name.
if(!GetDefaultPrinter(buffer, &size))
{
printf("Failure");
}
else
{
// Get a device context for the printer.
hdcPrint = CreateDC(NULL, buffer, NULL, NULL);
// Get a printer handle.
OpenPrinter(buffer, &printerHandle, NULL);
StartDoc(hdcPrint, &docInfo);
StartPage(hdcPrint);
Graphics* graphics = new Graphics(hdcPrint, printerHandle);
Pen* pen = new Pen(Color(255, 0, 0, 0));
graphics->DrawRectangle(pen, 200, 500, 200, 150);
graphics->DrawEllipse(pen, 200, 500, 200, 150);
delete(pen);
delete(graphics);
EndPage(hdcPrint);
EndDoc(hdcPrint);
ClosePrinter(printerHandle);
DeleteDC(hdcPrint);
}
delete buffer;
GdiplusShutdown(gdiplusToken);
return 0;
}