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

GetKerningPairsW

関数
フォントのカーニングペア情報を取得する(Unicode版)。
DLLGDI32.dll文字セットUnicode (-W)呼出規約winapi対応OSWindows 2000 以降

シグネチャ

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

DWORD GetKerningPairsW(
    HDC hdc,
    DWORD nPairs,
    KERNINGPAIR* lpKernPair   // optional
);

パラメーター

名前方向説明
hdcHDCinデバイスコンテキストへのハンドルです。
nPairsDWORDinlpkrnpair 配列内のペアの数です。フォントが nNumPairs 個を超えるカーニングペアを持つ場合、この関数はエラーを返します。
lpKernPairKERNINGPAIR*outoptionalカーニングペアを受け取る KERNINGPAIR 構造体の配列へのポインターです。この配列には、少なくとも nNumPairs パラメーターで指定された数の構造体が含まれている必要があります。このパラメーターが NULL の場合、関数はフォントのカーニングペアの総数を返します。

戻り値の型: DWORD

公式ドキュメント

GetKerningPairs 関数は、指定したデバイスコンテキストで現在選択されているフォントの文字カーニングペアを取得します。(Unicode)

戻り値

関数が成功した場合、戻り値は返されたカーニングペアの数です。

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

解説(Remarks)

メモ

wingdi.h ヘッダーは GetKerningPairs を、UNICODE プリプロセッサ定数の定義に基づいてこの関数の ANSI 版または Unicode 版を自動的に選択するエイリアスとして定義しています。エンコーディング非依存のエイリアスの使用と、エンコーディング非依存でないコードを混在させると、不一致が生じてコンパイルエラーや実行時エラーの原因となることがあります。詳細については、関数プロトタイプの規約を参照してください。

出典・ライセンス: 上記「公式ドキュメント」の内容は 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>

DWORD GetKerningPairsW(
    HDC hdc,
    DWORD nPairs,
    KERNINGPAIR* lpKernPair   // optional
);
[DllImport("GDI32.dll", CharSet = CharSet.Unicode, ExactSpelling = true)]
static extern uint GetKerningPairsW(
    IntPtr hdc,   // HDC
    uint nPairs,   // DWORD
    IntPtr lpKernPair   // KERNINGPAIR* optional, out
);
<DllImport("GDI32.dll", CharSet:=CharSet.Unicode, ExactSpelling:=True)>
Public Shared Function GetKerningPairsW(
    hdc As IntPtr,   ' HDC
    nPairs As UInteger,   ' DWORD
    lpKernPair As IntPtr   ' KERNINGPAIR* optional, out
) As UInteger
End Function
' hdc : HDC
' nPairs : DWORD
' lpKernPair : KERNINGPAIR* optional, out
Declare PtrSafe Function GetKerningPairsW Lib "gdi32" ( _
    ByVal hdc As LongPtr, _
    ByVal nPairs As Long, _
    ByVal lpKernPair As LongPtr) As Long
' 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

GetKerningPairsW = ctypes.windll.gdi32.GetKerningPairsW
GetKerningPairsW.restype = wintypes.DWORD
GetKerningPairsW.argtypes = [
    wintypes.HANDLE,  # hdc : HDC
    wintypes.DWORD,  # nPairs : DWORD
    ctypes.c_void_p,  # lpKernPair : KERNINGPAIR* optional, out
]
require 'fiddle'
require 'fiddle/import'

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

var (
	gdi32 = windows.NewLazySystemDLL("GDI32.dll")
	procGetKerningPairsW = gdi32.NewProc("GetKerningPairsW")
)

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

extern "gdi32" fn GetKerningPairsW(
    hdc: ?*anyopaque, // HDC
    nPairs: u32, // DWORD
    lpKernPair: [*c]KERNINGPAIR // KERNINGPAIR* optional, out
) callconv(std.os.windows.WINAPI) u32;
// Unicode(-W): UTF-16LE のヌル終端バッファ([*c]const u16)を渡す。
proc GetKerningPairsW(
    hdc: pointer,  # HDC
    nPairs: uint32,  # DWORD
    lpKernPair: ptr KERNINGPAIR  # KERNINGPAIR* optional, out
): uint32 {.importc: "GetKerningPairsW", stdcall, dynlib: "GDI32.dll".}
# Unicode(-W): WideCString は newWideCString("...") で生成。
pragma(lib, "gdi32");
extern(Windows)
uint GetKerningPairsW(
    void* hdc,   // HDC
    uint nPairs,   // DWORD
    KERNINGPAIR* lpKernPair   // KERNINGPAIR* optional, out
);
ccall((:GetKerningPairsW, "GDI32.dll"), stdcall, UInt32,
      (Ptr{Cvoid}, UInt32, Ptr{KERNINGPAIR}),
      hdc, nPairs, lpKernPair)
# hdc : HDC -> Ptr{Cvoid}
# nPairs : DWORD -> UInt32
# lpKernPair : KERNINGPAIR* optional, out -> Ptr{KERNINGPAIR}
# stdcall は 32bit のみ意味を持つ(x64 では無視)。
# Unicode(-W): Cwstring には transcode(UInt16, "...") 等で UTF-16 を渡す。
local ffi = require("ffi")
ffi.cdef[[
uint32_t GetKerningPairsW(
    void* hdc,
    uint32_t nPairs,
    void* lpKernPair);
]]
local gdi32 = ffi.load("gdi32")
-- gdi32.GetKerningPairsW(hdc, nPairs, lpKernPair)
-- hdc : HDC
-- nPairs : DWORD
-- lpKernPair : KERNINGPAIR* optional, out
-- 構造体/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 GetKerningPairsW = lib.func('__stdcall', 'GetKerningPairsW', 'uint32_t', ['void *', 'uint32_t', 'void *']);
// GetKerningPairsW(hdc, nPairs, lpKernPair)
// hdc : HDC -> 'void *'
// nPairs : DWORD -> 'uint32_t'
// lpKernPair : KERNINGPAIR* optional, out -> 'void *'
// 出力ポインタは koffi.out(...) で包む。構造体は koffi.struct で定義。
const lib = Deno.dlopen("GDI32.dll", {
  GetKerningPairsW: { parameters: ["pointer", "u32", "pointer"], result: "u32" },
});
// lib.symbols.GetKerningPairsW(hdc, nPairs, lpKernPair)
// hdc : HDC -> "pointer"
// nPairs : DWORD -> "u32"
// lpKernPair : KERNINGPAIR* optional, out -> "pointer"
// 文字列は "buffer"。Unicode(-W) は new TextEncoder() ではなく UTF-16LE のバイト列(末尾に \x00\x00)を Uint8Array で渡す。
// 値渡し構造体は { struct: [ ...field types... ] } を使用。
<?php
$ffi = FFI::cdef(<<<C
uint32_t GetKerningPairsW(
    void* hdc,
    uint32_t nPairs,
    void* lpKernPair);
C, "GDI32.dll");
// $ffi->GetKerningPairsW(hdc, nPairs, lpKernPair);
// hdc : HDC
// nPairs : DWORD
// lpKernPair : KERNINGPAIR* optional, out
// 構造体/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);
    int GetKerningPairsW(
        Pointer hdc,   // HDC
        int nPairs,   // DWORD
        Pointer lpKernPair   // KERNINGPAIR* optional, out
    );
}
// Unicode(-W): WString(入力)/char[](出力)で UTF-16 をマーシャリング。
@[Link("gdi32")]
lib LibGDI32
  fun GetKerningPairsW = GetKerningPairsW(
    hdc : Void*,   # HDC
    nPairs : UInt32,   # DWORD
    lpKernPair : KERNINGPAIR*   # KERNINGPAIR* optional, out
  ) : UInt32
end
# 構造体/GUID/enum は lib 内に対応する型定義が必要。
# 呼出規約: x64 は規約統一のため OK。x86(32bit)は WINAPI=stdcall だが Crystal の fun に stdcall 付与構文がなく非対応。
import 'dart:ffi';
import 'package:ffi/ffi.dart';

typedef GetKerningPairsWNative = Uint32 Function(Pointer<Void>, Uint32, Pointer<Void>);
typedef GetKerningPairsWDart = int Function(Pointer<Void>, int, Pointer<Void>);
final GetKerningPairsW = DynamicLibrary.open('GDI32.dll')
    .lookupFunction<GetKerningPairsWNative, GetKerningPairsWDart>('GetKerningPairsW');
// hdc : HDC -> Pointer<Void>
// nPairs : DWORD -> Uint32
// lpKernPair : KERNINGPAIR* optional, out -> Pointer<Void>
// 文字列は package:ffi の "...".toNativeUtf16()/toNativeUtf8() で変換。
{$mode objfpc}{$H+}
function GetKerningPairsW(
  hdc: THandle;   // HDC
  nPairs: DWORD;   // DWORD
  lpKernPair: Pointer   // KERNINGPAIR* optional, out
): DWORD; stdcall;
  external 'GDI32.dll' name 'GetKerningPairsW';
import Foreign
import Foreign.C.Types
import Foreign.C.String

foreign import stdcall safe "GetKerningPairsW"
  c_GetKerningPairsW :: Ptr () -> Word32 -> Ptr () -> IO Word32
-- hdc : HDC -> Ptr ()
-- nPairs : DWORD -> Word32
-- lpKernPair : KERNINGPAIR* optional, out -> Ptr ()
-- 要 GHC(Windows)。stdcall は x64 では ccall として扱われる。ブロックする API は safe 呼び出し推奨。
open Ctypes
open Foreign

let getkerningpairsw =
  foreign "GetKerningPairsW"
    ((ptr void) @-> uint32_t @-> (ptr void) @-> returning uint32_t)
(* hdc : HDC -> (ptr void) *)
(* nPairs : DWORD -> uint32_t *)
(* lpKernPair : KERNINGPAIR* optional, out -> (ptr void) *)
(* foreign は cdecl 前提。x64 Windows では WINAPI と一致。構造体は ctypes structure を定義のこと。 *)
(cffi:define-foreign-library gdi32 (t "GDI32.dll"))
(cffi:use-foreign-library gdi32)

(cffi:defcfun ("GetKerningPairsW" get-kerning-pairs-w :convention :stdcall) :uint32
  (hdc :pointer)   ; HDC
  (n-pairs :uint32)   ; DWORD
  (lp-kern-pair :pointer))   ; KERNINGPAIR* optional, out
; isize/usize(INT_PTR/SIZE_T)は x64 前提で :int64/:uint64。x86 では :int32/:uint32。
use Win32::API;
my $GetKerningPairsW = Win32::API::More->new('GDI32',
    'DWORD GetKerningPairsW(HANDLE hdc, DWORD nPairs, LPVOID lpKernPair)');
# my $ret = $GetKerningPairsW->Call($hdc, $nPairs, $lpKernPair);
# hdc : HDC -> HANDLE
# nPairs : DWORD -> DWORD
# lpKernPair : KERNINGPAIR* optional, out -> LPVOID
# 値渡し構造体は pack() した文字列、または Win32::API::Struct を使用。
# Unicode(-W): LPCWSTR/LPWSTR は Win32::API が UTF-16 変換を行う。

関連項目

文字セット違い
使用する型