拡張メタファイルの作成
このセクションには、ユーザーが指定したファイル名を使用して、ディスクに格納されている拡張メタファイルを作成する例が含まれています。
この例では、アプリケーション ウィンドウのデバイス コンテキストを参照デバイス コンテキストとして使用します。 (システムは、このデバイスの解決データを enhanced-metafile のヘッダーに格納します)。アプリケーションは 、GetDC 関数を呼び出すことによって、このデバイス コンテキストを識別するハンドルを取得します。
この例では、アプリケーションのクライアント領域の寸法を使用して、図枠の寸法を定義します。 GetClientRect 関数によって返される四角形の寸法を使用して、アプリケーションはデバイスの単位を .01 mm 単位に変換し、変換された値を CreateEnhMetaFile 関数に渡します。
この例では、ユーザーが新しい拡張メタファイルのファイル名を指定できるようにする [ 名前を付けて保存] 共通ダイアログ ボックスを表示します。 システムは、このファイル名に 3 文字の .emf 拡張子を追加し、その名前を CreateEnhMetaFile 関数に渡します。
この例では、図のテキストの説明も enhanced-metafile ヘッダーに埋め込みます。 この説明は、アプリケーションのリソース ファイルの文字列テーブルのリソースとして指定されます。 ただし、作業中のアプリケーションでは、この文字列は、共通のダイアログ ボックスのカスタム コントロールから、またはこの目的のためにのみ表示される別のダイアログ ボックスから取得されます。
// Obtain a handle to a reference device context.
hdcRef = GetDC(hWnd);
// Determine the picture frame dimensions.
// iWidthMM is the display width in millimeters.
// iHeightMM is the display height in millimeters.
// iWidthPels is the display width in pixels.
// iHeightPels is the display height in pixels
iWidthMM = GetDeviceCaps(hdcRef, HORZSIZE);
iHeightMM = GetDeviceCaps(hdcRef, VERTSIZE);
iWidthPels = GetDeviceCaps(hdcRef, HORZRES);
iHeightPels = GetDeviceCaps(hdcRef, VERTRES);
// Retrieve the coordinates of the client
// rectangle, in pixels.
GetClientRect(hWnd, &rect);
// Convert client coordinates to .01-mm units.
// Use iWidthMM, iWidthPels, iHeightMM, and
// iHeightPels to determine the number of
// .01-millimeter units per pixel in the x-
// and y-directions.
rect.left = (rect.left * iWidthMM * 100)/iWidthPels;
rect.top = (rect.top * iHeightMM * 100)/iHeightPels;
rect.right = (rect.right * iWidthMM * 100)/iWidthPels;
rect.bottom = (rect.bottom * iHeightMM * 100)/iHeightPels;
// Load the filename filter from the string table.
LoadString(hInst, IDS_FILTERSTRING,
(LPSTR)szFilter, sizeof(szFilter));
// Replace the '%' separators that are embedded
// between the strings in the string-table entry
// with '\0'.
for (i=0; szFilter[i]!='\0'; i++)
if (szFilter[i] == '%')
szFilter[i] = '\0';
// Load the dialog title string from the table.
LoadString(hInst, IDS_TITLESTRING,
(LPSTR)szTitle, sizeof(szTitle));
// Initialize the OPENFILENAME members.
szFile[0] = '\0';
Ofn.lStructSize = sizeof(OPENFILENAME);
Ofn.hwndOwner = hWnd;
Ofn.lpstrFilter = szFilter;
Ofn.lpstrFile= szFile;
Ofn.nMaxFile = sizeof(szFile)/ sizeof(*szFile);
Ofn.lpstrFileTitle = szFileTitle;
Ofn.nMaxFileTitle = sizeof(szFileTitle);
Ofn.lpstrInitialDir = (LPSTR)NULL;
Ofn.Flags = OFN_SHOWHELP | OFN_OVERWRITEPROMPT;
Ofn.lpstrTitle = szTitle;
// Display the Filename common dialog box. The
// filename specified by the user is passed
// to the CreateEnhMetaFile function and used to
// store the metafile on disk.
GetSaveFileName(&Ofn);
// Load the description from the string table.
LoadString(hInst, IDS_DESCRIPTIONSTRING,
(LPSTR)szDescription, sizeof(szDescription));
// Replace the '%' string separators that are
// embedded between strings in the string-table
// entry with '\0'.
for (i=0; szDescription[i]!='\0'; i++)
{
if (szDescription[i] == '%')
szDescription[i] = '\0';
}
// Create the metafile device context.
hdcMeta = CreateEnhMetaFile(hdcRef,
(LPTSTR) Ofn.lpstrFile,
&rect, (LPSTR)szDescription);
if (!hdcMeta)
errhandler("CreateEnhMetaFile", hWnd);
// Release the reference device context.
ReleaseDC(hWnd, hdcRef);