Win32 API 日本語リファレンス
ホームGraphics.Gdi › CreateFontIndirectExW

CreateFontIndirectExW

関数
拡張論理フォント情報からフォントを作成する。
DLLGDI32.dll文字セットUnicode (-W)呼出規約winapi対応OSWindows 2000 以降

シグネチャ

// GDI32.dll  (Unicode / -W)
#include <windows.h>

HFONT CreateFontIndirectExW(
    const ENUMLOGFONTEXDVW* param0
);

パラメーター

名前方向説明
param0ENUMLOGFONTEXDVW*in論理フォント・拡張属性・デザインベクトルを保持するENUMLOGFONTEXDVW構造体へのポインタ。

戻り値の型: HFONT

公式ドキュメント

CreateFontIndirectEx 関数は、指定した構造体が持つ特性を備えた論理フォントを指定します。このフォントは、その後、任意のデバイスコンテキストの現在のフォントとして選択できます。(Unicode)

戻り値

関数が成功した場合、戻り値は新しい ENUMLOGFONTEXDV 構造体へのハンドルです。

関数が失敗した場合、戻り値は 0 です。拡張エラー情報は利用できません。

解説(Remarks)

CreateFontIndirectEx 関数は、ENUMLOGFONTEXDV 構造体で指定された特性を持つ論理フォントを作成します。SelectObject 関数を使用してこのフォントが選択されると、GDI のフォントマッパーは論理フォントを既存の物理フォントと一致させようとします。完全に一致するものが見つからない場合は、要求された特性のうちできる限り多くに一致する代替フォントを提供します。

フォントが不要になったら、DeleteObject 関数を呼び出して削除してください。

CreateFontCreateFontIndirect、および CreateFontIndirectEx のフォントマッパーは、ロケールに関係なく、英語名とローカライズされた書体名の両方を認識します。

メモ

wingdi.h ヘッダーは CreateFontIndirectEx を、UNICODE プリプロセッサ定数の定義に基づいてこの関数の ANSI 版または Unicode 版を自動的に選択するエイリアスとして定義します。エンコーディングに依存しないエイリアスの使用と、エンコーディングに依存しないわけではないコードを混在させると、コンパイルエラーや実行時エラーを引き起こす不一致につながる可能性があります。詳細については、Conventions for Function Prototypes を参照してください。

出典・ライセンス: 上記「公式ドキュメント」の内容は Microsoft の Win32 API ドキュメント(MicrosoftDocs/sdk-api)を日本語に翻訳・改変したものです。© Microsoft Corporation. CC BY 4.0 で提供。
Microsoft 公式リファレンス: 英語 (en-us) · 日本語 (ja-jp) · 原文ソース (GitHub)

各言語での呼び出し定義

// GDI32.dll  (Unicode / -W)
#include <windows.h>

HFONT CreateFontIndirectExW(
    const ENUMLOGFONTEXDVW* param0
);
[DllImport("GDI32.dll", CharSet = CharSet.Unicode, ExactSpelling = true)]
static extern IntPtr CreateFontIndirectExW(
    IntPtr param0   // ENUMLOGFONTEXDVW*
);
<DllImport("GDI32.dll", CharSet:=CharSet.Unicode, ExactSpelling:=True)>
Public Shared Function CreateFontIndirectExW(
    param0 As IntPtr   ' ENUMLOGFONTEXDVW*
) As IntPtr
End Function
' param0 : ENUMLOGFONTEXDVW*
Declare PtrSafe Function CreateFontIndirectExW Lib "gdi32" ( _
    ByVal param0 As LongPtr) As LongPtr
' Unicode(W): 文字列は ByVal As LongPtr とし StrPtr(unicodeStr) を渡す
' VBA7前提(PtrSafe)。32bit Office では LongPtr→Long。Integer=16bit / Long=32bit / LongLong=64bit。
import ctypes
from ctypes import wintypes

CreateFontIndirectExW = ctypes.windll.gdi32.CreateFontIndirectExW
CreateFontIndirectExW.restype = ctypes.c_void_p
CreateFontIndirectExW.argtypes = [
    ctypes.c_void_p,  # param0 : ENUMLOGFONTEXDVW*
]
require 'fiddle'
require 'fiddle/import'

lib = Fiddle.dlopen('GDI32.dll')
CreateFontIndirectExW = Fiddle::Function.new(
  lib['CreateFontIndirectExW'],
  [
    Fiddle::TYPE_VOIDP,  # param0 : ENUMLOGFONTEXDVW*
  ],
  Fiddle::TYPE_VOIDP)
# Wide strings: pass str.encode("UTF-16LE") + "\x00\x00"
#[link(name = "gdi32")]
extern "system" {
    fn CreateFontIndirectExW(
        param0: *const ENUMLOGFONTEXDVW  // ENUMLOGFONTEXDVW*
    ) -> *mut core::ffi::c_void;
}
// crates: windows-sys provides ready-made bindings for this API.
$sig = @"
[DllImport("GDI32.dll", CharSet = CharSet.Unicode)]
public static extern IntPtr CreateFontIndirectExW(IntPtr param0);
"@
$api = Add-Type -MemberDefinition $sig -Name 'GDI32_CreateFontIndirectExW' -Namespace Win32 -PassThru
# $api::CreateFontIndirectExW(param0)
#uselib "GDI32.dll"
#func global CreateFontIndirectExW "CreateFontIndirectExW" wptr
; CreateFontIndirectExW varptr(param0)   ; 戻り値は stat
; param0 : ENUMLOGFONTEXDVW* -> "wptr"
; ※HSP3.7は #func のため戻り値はシステム変数 stat に格納されます。
出力引数:
#uselib "GDI32.dll"
#cfunc global CreateFontIndirectExW "CreateFontIndirectExW" var
; res = CreateFontIndirectExW(param0)
; param0 : ENUMLOGFONTEXDVW* -> "var"
; ※出力/バッファ引数は var 方式(変数を直接渡す)。varptr 方式にも切替可。
出力引数:
; HFONT CreateFontIndirectExW(ENUMLOGFONTEXDVW* param0)
#uselib "GDI32.dll"
#cfunc global CreateFontIndirectExW "CreateFontIndirectExW" var
; res = CreateFontIndirectExW(param0)
; param0 : ENUMLOGFONTEXDVW* -> "var"
; ※出力/バッファ引数は var 方式(変数を直接渡す)。varptr 方式にも切替可。
import (
	"golang.org/x/sys/windows"
	"unsafe"
)

var (
	gdi32 = windows.NewLazySystemDLL("GDI32.dll")
	procCreateFontIndirectExW = gdi32.NewProc("CreateFontIndirectExW")
)

// param0 (ENUMLOGFONTEXDVW*)
r1, _, err := procCreateFontIndirectExW.Call(
	uintptr(param0),
)
_ = err  // syscall.Errno (valid when the call sets last-error)
_ = r1   // HFONT
function CreateFontIndirectExW(
  param0: Pointer   // ENUMLOGFONTEXDVW*
): THandle; stdcall;
  external 'GDI32.dll' name 'CreateFontIndirectExW';
result := DllCall("GDI32\CreateFontIndirectExW"
    , "Ptr", param0   ; ENUMLOGFONTEXDVW*
    , "Ptr")   ; return: HFONT
●CreateFontIndirectExW(param0) = DLL("GDI32.dll", "void* CreateFontIndirectExW(void*)")
# 呼び出し: CreateFontIndirectExW(param0)
# param0 : ENUMLOGFONTEXDVW* -> "void*"
# なでしこ1は32bit・ANSI(Shift_JIS)。文字列=char*(ANSI)、ポインタ/ハンドル=void*(4byte)。
# ※-W(Unicode)関数。なでしこ1はANSIのため -A 版の利用を推奨。
const std = @import("std");

extern "gdi32" fn CreateFontIndirectExW(
    param0: [*c]ENUMLOGFONTEXDVW // ENUMLOGFONTEXDVW*
) callconv(std.os.windows.WINAPI) ?*anyopaque;
// Unicode(-W): UTF-16LE のヌル終端バッファ([*c]const u16)を渡す。
proc CreateFontIndirectExW(
    param0: ptr ENUMLOGFONTEXDVW  # ENUMLOGFONTEXDVW*
): pointer {.importc: "CreateFontIndirectExW", stdcall, dynlib: "GDI32.dll".}
# Unicode(-W): WideCString は newWideCString("...") で生成。
pragma(lib, "gdi32");
extern(Windows)
void* CreateFontIndirectExW(
    ENUMLOGFONTEXDVW* param0   // ENUMLOGFONTEXDVW*
);
ccall((:CreateFontIndirectExW, "GDI32.dll"), stdcall, Ptr{Cvoid},
      (Ptr{ENUMLOGFONTEXDVW},),
      param0)
# param0 : ENUMLOGFONTEXDVW* -> Ptr{ENUMLOGFONTEXDVW}
# stdcall は 32bit のみ意味を持つ(x64 では無視)。
# Unicode(-W): Cwstring には transcode(UInt16, "...") 等で UTF-16 を渡す。
local ffi = require("ffi")
ffi.cdef[[
void* CreateFontIndirectExW(
    void* param0);
]]
local gdi32 = ffi.load("gdi32")
-- gdi32.CreateFontIndirectExW(param0)
-- param0 : ENUMLOGFONTEXDVW*
-- 構造体/GUIDへのポインタは cdef が通るよう void* で表記(実型は各引数コメント参照)。値渡し構造体・enum は対応する typedef を cdef に追加すること。
-- Unicode(-W): uint16_t* には UTF-16LE のバッファ(ffi.new("uint16_t[?]", ...))を渡す。
const koffi = require('koffi');
const lib = koffi.load('GDI32.dll');
const CreateFontIndirectExW = lib.func('__stdcall', 'CreateFontIndirectExW', 'void *', ['void *']);
// CreateFontIndirectExW(param0)
// param0 : ENUMLOGFONTEXDVW* -> 'void *'
// 出力ポインタは koffi.out(...) で包む。構造体は koffi.struct で定義。
const lib = Deno.dlopen("GDI32.dll", {
  CreateFontIndirectExW: { parameters: ["pointer"], result: "pointer" },
});
// lib.symbols.CreateFontIndirectExW(param0)
// param0 : ENUMLOGFONTEXDVW* -> "pointer"
// 文字列は "buffer"。Unicode(-W) は new TextEncoder() ではなく UTF-16LE のバイト列(末尾に \x00\x00)を Uint8Array で渡す。
// 値渡し構造体は { struct: [ ...field types... ] } を使用。
<?php
$ffi = FFI::cdef(<<<C
void* CreateFontIndirectExW(
    void* param0);
C, "GDI32.dll");
// $ffi->CreateFontIndirectExW(param0);
// param0 : ENUMLOGFONTEXDVW*
// 構造体/GUIDへのポインタは cdef が通るよう void* で表記(実型は各引数コメント参照)。値渡し構造体・enum は対応する typedef を cdef に追加すること。
// WINAPI(stdcall): x64 では呼出規約が統一されるため問題なし。x86 では __stdcall 対応のラッパが必要な場合あり。
import com.sun.jna.*;
import com.sun.jna.ptr.*;
import com.sun.jna.win32.StdCallLibrary;
import com.sun.jna.win32.W32APIOptions;

public interface Gdi32 extends StdCallLibrary {
    Gdi32 INSTANCE = Native.load("gdi32", Gdi32.class, W32APIOptions.UNICODE_OPTIONS);
    Pointer CreateFontIndirectExW(
        Pointer param0   // ENUMLOGFONTEXDVW*
    );
}
// Unicode(-W): WString(入力)/char[](出力)で UTF-16 をマーシャリング。
@[Link("gdi32")]
lib LibGDI32
  fun CreateFontIndirectExW = CreateFontIndirectExW(
    param0 : ENUMLOGFONTEXDVW*   # ENUMLOGFONTEXDVW*
  ) : Void*
end
# 構造体/GUID/enum は lib 内に対応する型定義が必要。
# 呼出規約: x64 は規約統一のため OK。x86(32bit)は WINAPI=stdcall だが Crystal の fun に stdcall 付与構文がなく非対応。
import 'dart:ffi';
import 'package:ffi/ffi.dart';

typedef CreateFontIndirectExWNative = Pointer<Void> Function(Pointer<Void>);
typedef CreateFontIndirectExWDart = Pointer<Void> Function(Pointer<Void>);
final CreateFontIndirectExW = DynamicLibrary.open('GDI32.dll')
    .lookupFunction<CreateFontIndirectExWNative, CreateFontIndirectExWDart>('CreateFontIndirectExW');
// param0 : ENUMLOGFONTEXDVW* -> Pointer<Void>
// 文字列は package:ffi の "...".toNativeUtf16()/toNativeUtf8() で変換。
{$mode objfpc}{$H+}
function CreateFontIndirectExW(
  param0: Pointer   // ENUMLOGFONTEXDVW*
): THandle; stdcall;
  external 'GDI32.dll' name 'CreateFontIndirectExW';
import Foreign
import Foreign.C.Types
import Foreign.C.String

foreign import stdcall safe "CreateFontIndirectExW"
  c_CreateFontIndirectExW :: Ptr () -> IO (Ptr ())
-- param0 : ENUMLOGFONTEXDVW* -> Ptr ()
-- 要 GHC(Windows)。stdcall は x64 では ccall として扱われる。ブロックする API は safe 呼び出し推奨。
open Ctypes
open Foreign

let createfontindirectexw =
  foreign "CreateFontIndirectExW"
    ((ptr void) @-> returning (ptr void))
(* param0 : ENUMLOGFONTEXDVW* -> (ptr void) *)
(* foreign は cdecl 前提。x64 Windows では WINAPI と一致。構造体は ctypes structure を定義のこと。 *)
(cffi:define-foreign-library gdi32 (t "GDI32.dll"))
(cffi:use-foreign-library gdi32)

(cffi:defcfun ("CreateFontIndirectExW" create-font-indirect-ex-w :convention :stdcall) :pointer
  (param0 :pointer))   ; ENUMLOGFONTEXDVW*
; isize/usize(INT_PTR/SIZE_T)は x64 前提で :int64/:uint64。x86 では :int32/:uint32。
use Win32::API;
my $CreateFontIndirectExW = Win32::API::More->new('GDI32',
    'HANDLE CreateFontIndirectExW(LPVOID param0)');
# my $ret = $CreateFontIndirectExW->Call($param0);
# param0 : ENUMLOGFONTEXDVW* -> LPVOID
# 値渡し構造体は pack() した文字列、または Win32::API::Struct を使用。
# Unicode(-W): LPCWSTR/LPWSTR は Win32::API が UTF-16 変換を行う。

関連項目

文字セット違い
類似 API
公式の関連項目
使用する型