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

GetCharABCWidthsA

関数
TrueTypeフォントの文字のABC幅を取得する。
DLLGDI32.dll文字セットANSI (-A)呼出規約winapi対応OSWindows 2000 以降

シグネチャ

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

BOOL GetCharABCWidthsA(
    HDC hdc,
    DWORD wFirst,
    DWORD wLast,
    ABC* lpABC
);

パラメーター

名前方向説明
hdcHDCinデバイスコンテキストへのハンドル。
wFirstDWORDin現在のフォントの連続する文字グループのうち、最初の文字。
wLastDWORDin現在のフォントの連続する文字グループのうち、最後の文字。
lpABCABC*out文字幅を論理単位で受け取る ABC 構造体の配列へのポインター。この配列には、uFirstChar パラメーターと uLastChar パラメーターで指定された範囲の文字数以上の ABC 構造体が含まれていなければなりません。

戻り値の型: BOOL

公式ドキュメント

GetCharABCWidths 関数は、現在の TrueType フォントから、指定した範囲の連続する文字の幅を論理単位で取得します。この関数は TrueType フォントでのみ成功します。(ANSI)

戻り値

関数が成功した場合、戻り値は 0 以外の値です。

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

解説(Remarks)

TrueType ラスタライザーは、特定のポイントサイズが選択された後に ABC 文字間隔を提供します。A 間隔は、グリフを配置する前に現在位置に加算される距離です。B 間隔は、グリフの黒い部分の幅です。C 間隔は、グリフの右側に空白を設けるために現在位置に加算される距離です。総アドバンス幅は A+B+C で指定されます。

GetCharABCWidths 関数がある文字に対して負の A 幅または C 幅を取得した場合、その文字にはアンダーハングまたはオーバーハングが含まれています。

ABC 幅をフォントデザイン単位に変換するには、アプリケーションは OUTLINETEXTMETRIC 構造体の otmEMSquare メンバーに格納されている値を使用してください。この値は GetOutlineTextMetrics 関数を呼び出すことで取得できます。

現在選択されているフォントの範囲外の文字には、デフォルト文字の ABC 幅が使用されます。

非 TrueType フォントの文字幅を取得するには、アプリケーションは GetCharWidth 関数を使用してください。

メモ

wingdi.h ヘッダーは GetCharABCWidths を、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  (ANSI / -A)
#include <windows.h>

BOOL GetCharABCWidthsA(
    HDC hdc,
    DWORD wFirst,
    DWORD wLast,
    ABC* lpABC
);
[return: MarshalAs(UnmanagedType.Bool)]
[DllImport("GDI32.dll", CharSet = CharSet.Ansi, ExactSpelling = true)]
static extern bool GetCharABCWidthsA(
    IntPtr hdc,   // HDC
    uint wFirst,   // DWORD
    uint wLast,   // DWORD
    IntPtr lpABC   // ABC* out
);
<DllImport("GDI32.dll", CharSet:=CharSet.Ansi, ExactSpelling:=True)>
Public Shared Function GetCharABCWidthsA(
    hdc As IntPtr,   ' HDC
    wFirst As UInteger,   ' DWORD
    wLast As UInteger,   ' DWORD
    lpABC As IntPtr   ' ABC* out
) As <MarshalAs(UnmanagedType.Bool)> Boolean
End Function
' hdc : HDC
' wFirst : DWORD
' wLast : DWORD
' lpABC : ABC* out
Declare PtrSafe Function GetCharABCWidthsA Lib "gdi32" ( _
    ByVal hdc As LongPtr, _
    ByVal wFirst As Long, _
    ByVal wLast As Long, _
    ByVal lpABC As LongPtr) As Long
' VBA7前提(PtrSafe)。32bit Office では LongPtr→Long。Integer=16bit / Long=32bit / LongLong=64bit。
import ctypes
from ctypes import wintypes

GetCharABCWidthsA = ctypes.windll.gdi32.GetCharABCWidthsA
GetCharABCWidthsA.restype = wintypes.BOOL
GetCharABCWidthsA.argtypes = [
    wintypes.HANDLE,  # hdc : HDC
    wintypes.DWORD,  # wFirst : DWORD
    wintypes.DWORD,  # wLast : DWORD
    ctypes.c_void_p,  # lpABC : ABC* out
]
require 'fiddle'
require 'fiddle/import'

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

var (
	gdi32 = windows.NewLazySystemDLL("GDI32.dll")
	procGetCharABCWidthsA = gdi32.NewProc("GetCharABCWidthsA")
)

// hdc (HDC), wFirst (DWORD), wLast (DWORD), lpABC (ABC* out)
r1, _, err := procGetCharABCWidthsA.Call(
	uintptr(hdc),
	uintptr(wFirst),
	uintptr(wLast),
	uintptr(lpABC),
)
_ = err  // syscall.Errno (valid when the call sets last-error)
_ = r1   // BOOL
function GetCharABCWidthsA(
  hdc: THandle;   // HDC
  wFirst: DWORD;   // DWORD
  wLast: DWORD;   // DWORD
  lpABC: Pointer   // ABC* out
): BOOL; stdcall;
  external 'GDI32.dll' name 'GetCharABCWidthsA';
result := DllCall("GDI32\GetCharABCWidthsA"
    , "Ptr", hdc   ; HDC
    , "UInt", wFirst   ; DWORD
    , "UInt", wLast   ; DWORD
    , "Ptr", lpABC   ; ABC* out
    , "Int")   ; return: BOOL
●GetCharABCWidthsA(hdc, wFirst, wLast, lpABC) = DLL("GDI32.dll", "bool GetCharABCWidthsA(void*, dword, dword, void*)")
# 呼び出し: GetCharABCWidthsA(hdc, wFirst, wLast, lpABC)
# hdc : HDC -> "void*"
# wFirst : DWORD -> "dword"
# wLast : DWORD -> "dword"
# lpABC : ABC* out -> "void*"
# なでしこ1は32bit・ANSI(Shift_JIS)。文字列=char*(ANSI)、ポインタ/ハンドル=void*(4byte)。
const std = @import("std");

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

typedef GetCharABCWidthsANative = Int32 Function(Pointer<Void>, Uint32, Uint32, Pointer<Void>);
typedef GetCharABCWidthsADart = int Function(Pointer<Void>, int, int, Pointer<Void>);
final GetCharABCWidthsA = DynamicLibrary.open('GDI32.dll')
    .lookupFunction<GetCharABCWidthsANative, GetCharABCWidthsADart>('GetCharABCWidthsA');
// hdc : HDC -> Pointer<Void>
// wFirst : DWORD -> Uint32
// wLast : DWORD -> Uint32
// lpABC : ABC* out -> Pointer<Void>
// 文字列は package:ffi の "...".toNativeUtf16()/toNativeUtf8() で変換。
{$mode objfpc}{$H+}
function GetCharABCWidthsA(
  hdc: THandle;   // HDC
  wFirst: DWORD;   // DWORD
  wLast: DWORD;   // DWORD
  lpABC: Pointer   // ABC* out
): BOOL; stdcall;
  external 'GDI32.dll' name 'GetCharABCWidthsA';
import Foreign
import Foreign.C.Types
import Foreign.C.String

foreign import stdcall safe "GetCharABCWidthsA"
  c_GetCharABCWidthsA :: Ptr () -> Word32 -> Word32 -> Ptr () -> IO CInt
-- hdc : HDC -> Ptr ()
-- wFirst : DWORD -> Word32
-- wLast : DWORD -> Word32
-- lpABC : ABC* out -> Ptr ()
-- 要 GHC(Windows)。stdcall は x64 では ccall として扱われる。ブロックする API は safe 呼び出し推奨。
open Ctypes
open Foreign

let getcharabcwidthsa =
  foreign "GetCharABCWidthsA"
    ((ptr void) @-> uint32_t @-> uint32_t @-> (ptr void) @-> returning int32_t)
(* hdc : HDC -> (ptr void) *)
(* wFirst : DWORD -> uint32_t *)
(* wLast : DWORD -> uint32_t *)
(* lpABC : ABC* 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 ("GetCharABCWidthsA" get-char-abcwidths-a :convention :stdcall) :int32
  (hdc :pointer)   ; HDC
  (w-first :uint32)   ; DWORD
  (w-last :uint32)   ; DWORD
  (lp-abc :pointer))   ; ABC* out
; isize/usize(INT_PTR/SIZE_T)は x64 前提で :int64/:uint64。x86 では :int32/:uint32。
use Win32::API;
my $GetCharABCWidthsA = Win32::API::More->new('GDI32',
    'BOOL GetCharABCWidthsA(HANDLE hdc, DWORD wFirst, DWORD wLast, LPVOID lpABC)');
# my $ret = $GetCharABCWidthsA->Call($hdc, $wFirst, $wLast, $lpABC);
# hdc : HDC -> HANDLE
# wFirst : DWORD -> DWORD
# wLast : DWORD -> DWORD
# lpABC : ABC* out -> LPVOID
# 値渡し構造体は pack() した文字列、または Win32::API::Struct を使用。

関連項目

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