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

CreateFontIndirectA

関数
LOGFONT構造体の指定に基づき論理フォントを作成する(ANSI版)。
DLLGDI32.dll文字セットANSI (-A)呼出規約winapi対応OSWindows 2000 以降

シグネチャ

// GDI32.dll  (ANSI / -A)
#include <windows.h>

HFONT CreateFontIndirectA(
    const LOGFONTA* lplf
);

パラメーター

名前方向説明
lplfLOGFONTA*in論理フォントの特性を定義する LOGFONT 構造体へのポインターです。

戻り値の型: HFONT

公式ドキュメント

CreateFontIndirect 関数は、指定された特性を持つ論理フォントを作成します。このフォントは、その後任意のデバイスコンテキストの現在のフォントとして選択できます。(ANSI)

戻り値

関数が成功した場合、戻り値は論理フォントのハンドルです。

関数が失敗した場合、戻り値は NULL です。

解説(Remarks)

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

OS のさまざまな言語バージョンで適切なフォントを取得するには、LOGFONT 構造体に目的のフォント特性を指定して EnumFontFamiliesEx を呼び出し、適切な書体名を取得して、CreateFont または CreateFontIndirect を使用してフォントを作成します。

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

多くの東アジア言語のフォントには、英語名とローカライズされた名前の 2 つの書体名があります。CreateFontCreateFontIndirect は、その言語に一致するシステムロケールではローカライズされた書体名のみを受け付け、それ以外のすべてのシステムロケールでは英語の書体名を受け付けます。最善の方法は、一方の名前を試し、失敗した場合にもう一方を試すことです。なお、EnumFontsEnumFontFamilies、および EnumFontFamiliesEx は、システムロケールがフォントの言語と一致しない場合、英語の書体名を返します。

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

例については、Creating a Logical Font を参照してください。

メモ

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

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

各言語での呼び出し定義

// GDI32.dll  (ANSI / -A)
#include <windows.h>

HFONT CreateFontIndirectA(
    const LOGFONTA* lplf
);
[DllImport("GDI32.dll", CharSet = CharSet.Ansi, ExactSpelling = true)]
static extern IntPtr CreateFontIndirectA(
    IntPtr lplf   // LOGFONTA*
);
<DllImport("GDI32.dll", CharSet:=CharSet.Ansi, ExactSpelling:=True)>
Public Shared Function CreateFontIndirectA(
    lplf As IntPtr   ' LOGFONTA*
) As IntPtr
End Function
' lplf : LOGFONTA*
Declare PtrSafe Function CreateFontIndirectA Lib "gdi32" ( _
    ByVal lplf As LongPtr) As LongPtr
' VBA7前提(PtrSafe)。32bit Office では LongPtr→Long。Integer=16bit / Long=32bit / LongLong=64bit。
import ctypes
from ctypes import wintypes

CreateFontIndirectA = ctypes.windll.gdi32.CreateFontIndirectA
CreateFontIndirectA.restype = ctypes.c_void_p
CreateFontIndirectA.argtypes = [
    ctypes.c_void_p,  # lplf : LOGFONTA*
]
require 'fiddle'
require 'fiddle/import'

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

var (
	gdi32 = windows.NewLazySystemDLL("GDI32.dll")
	procCreateFontIndirectA = gdi32.NewProc("CreateFontIndirectA")
)

// lplf (LOGFONTA*)
r1, _, err := procCreateFontIndirectA.Call(
	uintptr(lplf),
)
_ = err  // syscall.Errno (valid when the call sets last-error)
_ = r1   // HFONT
function CreateFontIndirectA(
  lplf: Pointer   // LOGFONTA*
): THandle; stdcall;
  external 'GDI32.dll' name 'CreateFontIndirectA';
result := DllCall("GDI32\CreateFontIndirectA"
    , "Ptr", lplf   ; LOGFONTA*
    , "Ptr")   ; return: HFONT
●CreateFontIndirectA(lplf) = DLL("GDI32.dll", "void* CreateFontIndirectA(void*)")
# 呼び出し: CreateFontIndirectA(lplf)
# lplf : LOGFONTA* -> "void*"
# なでしこ1は32bit・ANSI(Shift_JIS)。文字列=char*(ANSI)、ポインタ/ハンドル=void*(4byte)。
const std = @import("std");

extern "gdi32" fn CreateFontIndirectA(
    lplf: [*c]LOGFONTA // LOGFONTA*
) callconv(std.os.windows.WINAPI) ?*anyopaque;
proc CreateFontIndirectA(
    lplf: ptr LOGFONTA  # LOGFONTA*
): pointer {.importc: "CreateFontIndirectA", stdcall, dynlib: "GDI32.dll".}
pragma(lib, "gdi32");
extern(Windows)
void* CreateFontIndirectA(
    LOGFONTA* lplf   // LOGFONTA*
);
ccall((:CreateFontIndirectA, "GDI32.dll"), stdcall, Ptr{Cvoid},
      (Ptr{LOGFONTA},),
      lplf)
# lplf : LOGFONTA* -> Ptr{LOGFONTA}
# stdcall は 32bit のみ意味を持つ(x64 では無視)。
local ffi = require("ffi")
ffi.cdef[[
void* CreateFontIndirectA(
    void* lplf);
]]
local gdi32 = ffi.load("gdi32")
-- gdi32.CreateFontIndirectA(lplf)
-- lplf : LOGFONTA*
-- 構造体/GUIDへのポインタは cdef が通るよう void* で表記(実型は各引数コメント参照)。値渡し構造体・enum は対応する typedef を cdef に追加すること。
const koffi = require('koffi');
const lib = koffi.load('GDI32.dll');
const CreateFontIndirectA = lib.func('__stdcall', 'CreateFontIndirectA', 'void *', ['void *']);
// CreateFontIndirectA(lplf)
// lplf : LOGFONTA* -> 'void *'
// 出力ポインタは koffi.out(...) で包む。構造体は koffi.struct で定義。
const lib = Deno.dlopen("GDI32.dll", {
  CreateFontIndirectA: { parameters: ["pointer"], result: "pointer" },
});
// lib.symbols.CreateFontIndirectA(lplf)
// lplf : LOGFONTA* -> "pointer"
// 文字列は "buffer"。ANSI(-A) は new TextEncoder() で UTF-8/ANSI バイト列(末尾に \x00)を渡す。
// 値渡し構造体は { struct: [ ...field types... ] } を使用。
<?php
$ffi = FFI::cdef(<<<C
void* CreateFontIndirectA(
    void* lplf);
C, "GDI32.dll");
// $ffi->CreateFontIndirectA(lplf);
// lplf : LOGFONTA*
// 構造体/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.ASCII_OPTIONS);
    Pointer CreateFontIndirectA(
        Pointer lplf   // LOGFONTA*
    );
}
@[Link("gdi32")]
lib LibGDI32
  fun CreateFontIndirectA = CreateFontIndirectA(
    lplf : LOGFONTA*   # LOGFONTA*
  ) : Void*
end
# 構造体/GUID/enum は lib 内に対応する型定義が必要。
# 呼出規約: x64 は規約統一のため OK。x86(32bit)は WINAPI=stdcall だが Crystal の fun に stdcall 付与構文がなく非対応。
import 'dart:ffi';
import 'package:ffi/ffi.dart';

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

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

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

(cffi:defcfun ("CreateFontIndirectA" create-font-indirect-a :convention :stdcall) :pointer
  (lplf :pointer))   ; LOGFONTA*
; isize/usize(INT_PTR/SIZE_T)は x64 前提で :int64/:uint64。x86 では :int32/:uint32。
use Win32::API;
my $CreateFontIndirectA = Win32::API::More->new('GDI32',
    'HANDLE CreateFontIndirectA(LPVOID lplf)');
# my $ret = $CreateFontIndirectA->Call($lplf);
# lplf : LOGFONTA* -> LPVOID
# 値渡し構造体は pack() した文字列、または Win32::API::Struct を使用。

関連項目

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