次の方法で共有


[印刷] ダイアログ ボックスの表示

プリンターのデバイス コンテキスト ハンドルを取得する方法の 1 つは、印刷ダイアログ ボックスを表示し、ユーザーがプリンターを選択できるようにすることです。 PrintDlg 関数 (ダイアログ ボックスを表示) には、PRINTDLG 構造体のアドレスであるパラメーターが 1 つ含まれています。 PRINTDLG 構造体には複数のメンバーがありますが、ほとんどのメンバーを既定値に設定したままにすることができます。 設定する必要がある 2 つのメンバーは、 lStructSizeFlags ですlStructSize を PRINTDLG 変数のサイズに設定し、Flags をPD_RETURNDCに設定します。 フラグを PC_RETURNDC に設定すると、PrintDlg 関数が hDC フィールドに、ユーザーが選択したプリンターのデバイス コンテキスト ハンドルを入力するように指定します。

#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);
   
   DOCINFO docInfo;
   ZeroMemory(&docInfo, sizeof(docInfo));
   docInfo.cbSize = sizeof(docInfo);
   docInfo.lpszDocName = "GdiplusPrint";
   
   // Create a PRINTDLG structure, and initialize the appropriate fields.
   PRINTDLG printDlg;
   ZeroMemory(&printDlg, sizeof(printDlg));
   printDlg.lStructSize = sizeof(printDlg);
   printDlg.Flags = PD_RETURNDC;
   
   // Display a print dialog box.
   if(!PrintDlg(&printDlg))
   {
      printf("Failure\n");
   }
   else
   {
      // Now that PrintDlg has returned, a device context handle
      // for the chosen printer is in printDlg->hDC.
      
      StartDoc(printDlg.hDC, &docInfo);
      StartPage(printDlg.hDC);
         Graphics* graphics = new Graphics(printDlg.hDC);
         Pen* pen = new Pen(Color(255, 0, 0, 0));
         graphics->DrawRectangle(pen, 200, 500, 200, 150);
         graphics->DrawEllipse(pen, 200, 500, 200, 150);
         graphics->DrawLine(pen, 200, 500, 400, 650);
         delete pen;
         delete graphics;
      EndPage(printDlg.hDC);
      EndDoc(printDlg.hDC); 
   }
   if(printDlg.hDevMode) 
      GlobalFree(printDlg.hDevMode);
   if(printDlg.hDevNames) 
      GlobalFree(printDlg.hDevNames);
   if(printDlg.hDC)
      DeleteDC(printDlg.hDC);
   
   GdiplusShutdown(gdiplusToken);
   return 0;
}