ホーム › Graphics.Gdi › GetCharWidthA
GetCharWidthA
関数指定範囲の文字の幅を取得する。
シグネチャ
// GDI32.dll (ANSI / -A)
#include <windows.h>
BOOL GetCharWidthA(
HDC hdc,
DWORD iFirst,
DWORD iLast,
INT* lpBuffer
);パラメーター
| 名前 | 型 | 方向 | 説明 |
|---|---|---|---|
| hdc | HDC | in | デバイスコンテキストへのハンドル。 |
| iFirst | DWORD | in | 連続する文字グループの最初の文字。 |
| iLast | DWORD | in | 連続する文字グループの最後の文字。指定した最初の文字より前であってはなりません。 |
| lpBuffer | INT* | out | 文字の幅を論理座標で受け取るバッファーへのポインター。 |
戻り値の型: BOOL
公式ドキュメント
GetCharWidth 関数は、現在のフォントから指定した範囲の連続する文字の幅を論理座標で取得します。(ANSI)
戻り値
関数が成功すると、戻り値は 0 以外の値になります。
関数が失敗すると、戻り値は 0 になります。
解説(Remarks)
GetCharWidth は TrueType フォントには使用できません。TrueType フォントの文字幅を取得するには、GetCharABCWidths を使用してください。
範囲は両端を含みます。つまり、返される幅には iFirstChar パラメーターと iLastChar パラメーターで指定した文字の幅が含まれます。
現在のフォントに存在しない文字には、既定の文字の幅が割り当てられます。
メモ
wingdi.h ヘッダーは GetCharWidth をエイリアスとして定義しており、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)
Microsoft 公式リファレンス: 英語 (en-us) · 日本語 (ja-jp) · 原文ソース (GitHub)
各言語での呼び出し定義
// GDI32.dll (ANSI / -A)
#include <windows.h>
BOOL GetCharWidthA(
HDC hdc,
DWORD iFirst,
DWORD iLast,
INT* lpBuffer
);[return: MarshalAs(UnmanagedType.Bool)]
[DllImport("GDI32.dll", CharSet = CharSet.Ansi, ExactSpelling = true)]
static extern bool GetCharWidthA(
IntPtr hdc, // HDC
uint iFirst, // DWORD
uint iLast, // DWORD
out int lpBuffer // INT* out
);<DllImport("GDI32.dll", CharSet:=CharSet.Ansi, ExactSpelling:=True)>
Public Shared Function GetCharWidthA(
hdc As IntPtr, ' HDC
iFirst As UInteger, ' DWORD
iLast As UInteger, ' DWORD
<Out> ByRef lpBuffer As Integer ' INT* out
) As <MarshalAs(UnmanagedType.Bool)> Boolean
End Function' hdc : HDC
' iFirst : DWORD
' iLast : DWORD
' lpBuffer : INT* out
Declare PtrSafe Function GetCharWidthA Lib "gdi32" ( _
ByVal hdc As LongPtr, _
ByVal iFirst As Long, _
ByVal iLast As Long, _
ByRef lpBuffer As Long) As Long
' VBA7前提(PtrSafe)。32bit Office では LongPtr→Long。Integer=16bit / Long=32bit / LongLong=64bit。import ctypes
from ctypes import wintypes
GetCharWidthA = ctypes.windll.gdi32.GetCharWidthA
GetCharWidthA.restype = wintypes.BOOL
GetCharWidthA.argtypes = [
wintypes.HANDLE, # hdc : HDC
wintypes.DWORD, # iFirst : DWORD
wintypes.DWORD, # iLast : DWORD
ctypes.POINTER(ctypes.c_int), # lpBuffer : INT* out
]require 'fiddle'
require 'fiddle/import'
lib = Fiddle.dlopen('GDI32.dll')
GetCharWidthA = Fiddle::Function.new(
lib['GetCharWidthA'],
[
Fiddle::TYPE_VOIDP, # hdc : HDC
-Fiddle::TYPE_INT, # iFirst : DWORD
-Fiddle::TYPE_INT, # iLast : DWORD
Fiddle::TYPE_VOIDP, # lpBuffer : INT* out
],
Fiddle::TYPE_INT)#[link(name = "gdi32")]
extern "system" {
fn GetCharWidthA(
hdc: *mut core::ffi::c_void, // HDC
iFirst: u32, // DWORD
iLast: u32, // DWORD
lpBuffer: *mut i32 // INT* 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 GetCharWidthA(IntPtr hdc, uint iFirst, uint iLast, out int lpBuffer);
"@
$api = Add-Type -MemberDefinition $sig -Name 'GDI32_GetCharWidthA' -Namespace Win32 -PassThru
# $api::GetCharWidthA(hdc, iFirst, iLast, lpBuffer)#uselib "GDI32.dll"
#func global GetCharWidthA "GetCharWidthA" sptr, sptr, sptr, sptr
; GetCharWidthA hdc, iFirst, iLast, varptr(lpBuffer) ; 戻り値は stat
; hdc : HDC -> "sptr"
; iFirst : DWORD -> "sptr"
; iLast : DWORD -> "sptr"
; lpBuffer : INT* out -> "sptr"
; ※HSP3.7は #func のため戻り値はシステム変数 stat に格納されます。出力引数:
#uselib "GDI32.dll" #cfunc global GetCharWidthA "GetCharWidthA" sptr, int, int, var ; res = GetCharWidthA(hdc, iFirst, iLast, lpBuffer) ; hdc : HDC -> "sptr" ; iFirst : DWORD -> "int" ; iLast : DWORD -> "int" ; lpBuffer : INT* out -> "var" ; ※出力/バッファ引数は var 方式(変数を直接渡す)。varptr 方式にも切替可。#uselib "GDI32.dll" #cfunc global GetCharWidthA "GetCharWidthA" sptr, int, int, sptr ; res = GetCharWidthA(hdc, iFirst, iLast, varptr(lpBuffer)) ; hdc : HDC -> "sptr" ; iFirst : DWORD -> "int" ; iLast : DWORD -> "int" ; lpBuffer : INT* out -> "sptr" ; ※出力/バッファ引数はポインタ方式(token=sptr / 呼び出しは varptr(変数))。
出力引数:
; BOOL GetCharWidthA(HDC hdc, DWORD iFirst, DWORD iLast, INT* lpBuffer) #uselib "GDI32.dll" #cfunc global GetCharWidthA "GetCharWidthA" intptr, int, int, var ; res = GetCharWidthA(hdc, iFirst, iLast, lpBuffer) ; hdc : HDC -> "intptr" ; iFirst : DWORD -> "int" ; iLast : DWORD -> "int" ; lpBuffer : INT* out -> "var" ; ※出力/バッファ引数は var 方式(変数を直接渡す)。varptr 方式にも切替可。; BOOL GetCharWidthA(HDC hdc, DWORD iFirst, DWORD iLast, INT* lpBuffer) #uselib "GDI32.dll" #cfunc global GetCharWidthA "GetCharWidthA" intptr, int, int, intptr ; res = GetCharWidthA(hdc, iFirst, iLast, varptr(lpBuffer)) ; hdc : HDC -> "intptr" ; iFirst : DWORD -> "int" ; iLast : DWORD -> "int" ; lpBuffer : INT* out -> "intptr" ; ※出力/バッファ引数はポインタ方式(token=intptr / 呼び出しは varptr(変数))。
import (
"golang.org/x/sys/windows"
"unsafe"
)
var (
gdi32 = windows.NewLazySystemDLL("GDI32.dll")
procGetCharWidthA = gdi32.NewProc("GetCharWidthA")
)
// hdc (HDC), iFirst (DWORD), iLast (DWORD), lpBuffer (INT* out)
r1, _, err := procGetCharWidthA.Call(
uintptr(hdc),
uintptr(iFirst),
uintptr(iLast),
uintptr(lpBuffer),
)
_ = err // syscall.Errno (valid when the call sets last-error)
_ = r1 // BOOLfunction GetCharWidthA(
hdc: THandle; // HDC
iFirst: DWORD; // DWORD
iLast: DWORD; // DWORD
lpBuffer: Pointer // INT* out
): BOOL; stdcall;
external 'GDI32.dll' name 'GetCharWidthA';result := DllCall("GDI32\GetCharWidthA"
, "Ptr", hdc ; HDC
, "UInt", iFirst ; DWORD
, "UInt", iLast ; DWORD
, "Ptr", lpBuffer ; INT* out
, "Int") ; return: BOOL●GetCharWidthA(hdc, iFirst, iLast, lpBuffer) = DLL("GDI32.dll", "bool GetCharWidthA(void*, dword, dword, void*)")
# 呼び出し: GetCharWidthA(hdc, iFirst, iLast, lpBuffer)
# hdc : HDC -> "void*"
# iFirst : DWORD -> "dword"
# iLast : DWORD -> "dword"
# lpBuffer : INT* out -> "void*"
# なでしこ1は32bit・ANSI(Shift_JIS)。文字列=char*(ANSI)、ポインタ/ハンドル=void*(4byte)。const std = @import("std");
extern "gdi32" fn GetCharWidthA(
hdc: ?*anyopaque, // HDC
iFirst: u32, // DWORD
iLast: u32, // DWORD
lpBuffer: [*c]i32 // INT* out
) callconv(std.os.windows.WINAPI) i32;proc GetCharWidthA(
hdc: pointer, # HDC
iFirst: uint32, # DWORD
iLast: uint32, # DWORD
lpBuffer: ptr int32 # INT* out
): int32 {.importc: "GetCharWidthA", stdcall, dynlib: "GDI32.dll".}pragma(lib, "gdi32");
extern(Windows)
int GetCharWidthA(
void* hdc, // HDC
uint iFirst, // DWORD
uint iLast, // DWORD
int* lpBuffer // INT* out
);ccall((:GetCharWidthA, "GDI32.dll"), stdcall, Int32,
(Ptr{Cvoid}, UInt32, UInt32, Ptr{Int32}),
hdc, iFirst, iLast, lpBuffer)
# hdc : HDC -> Ptr{Cvoid}
# iFirst : DWORD -> UInt32
# iLast : DWORD -> UInt32
# lpBuffer : INT* out -> Ptr{Int32}
# stdcall は 32bit のみ意味を持つ(x64 では無視)。local ffi = require("ffi")
ffi.cdef[[
int32_t GetCharWidthA(
void* hdc,
uint32_t iFirst,
uint32_t iLast,
int32_t* lpBuffer);
]]
local gdi32 = ffi.load("gdi32")
-- gdi32.GetCharWidthA(hdc, iFirst, iLast, lpBuffer)
-- hdc : HDC
-- iFirst : DWORD
-- iLast : DWORD
-- lpBuffer : INT* out
-- 構造体/GUIDへのポインタは cdef が通るよう void* で表記(実型は各引数コメント参照)。値渡し構造体・enum は対応する typedef を cdef に追加すること。const koffi = require('koffi');
const lib = koffi.load('GDI32.dll');
const GetCharWidthA = lib.func('__stdcall', 'GetCharWidthA', 'int32_t', ['void *', 'uint32_t', 'uint32_t', 'int32_t *']);
// GetCharWidthA(hdc, iFirst, iLast, lpBuffer)
// hdc : HDC -> 'void *'
// iFirst : DWORD -> 'uint32_t'
// iLast : DWORD -> 'uint32_t'
// lpBuffer : INT* out -> 'int32_t *'
// 出力ポインタは koffi.out(...) で包む。構造体は koffi.struct で定義。const lib = Deno.dlopen("GDI32.dll", {
GetCharWidthA: { parameters: ["pointer", "u32", "u32", "pointer"], result: "i32" },
});
// lib.symbols.GetCharWidthA(hdc, iFirst, iLast, lpBuffer)
// hdc : HDC -> "pointer"
// iFirst : DWORD -> "u32"
// iLast : DWORD -> "u32"
// lpBuffer : INT* out -> "pointer"
// 文字列は "buffer"。ANSI(-A) は new TextEncoder() で UTF-8/ANSI バイト列(末尾に \x00)を渡す。
// 値渡し構造体は { struct: [ ...field types... ] } を使用。<?php
$ffi = FFI::cdef(<<<C
int32_t GetCharWidthA(
void* hdc,
uint32_t iFirst,
uint32_t iLast,
int32_t* lpBuffer);
C, "GDI32.dll");
// $ffi->GetCharWidthA(hdc, iFirst, iLast, lpBuffer);
// hdc : HDC
// iFirst : DWORD
// iLast : DWORD
// lpBuffer : INT* 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 GetCharWidthA(
Pointer hdc, // HDC
int iFirst, // DWORD
int iLast, // DWORD
IntByReference lpBuffer // INT* out
);
}@[Link("gdi32")]
lib LibGDI32
fun GetCharWidthA = GetCharWidthA(
hdc : Void*, # HDC
iFirst : UInt32, # DWORD
iLast : UInt32, # DWORD
lpBuffer : Int32* # INT* out
) : Int32
end
# 構造体/GUID/enum は lib 内に対応する型定義が必要。
# 呼出規約: x64 は規約統一のため OK。x86(32bit)は WINAPI=stdcall だが Crystal の fun に stdcall 付与構文がなく非対応。import 'dart:ffi';
import 'package:ffi/ffi.dart';
typedef GetCharWidthANative = Int32 Function(Pointer<Void>, Uint32, Uint32, Pointer<Int32>);
typedef GetCharWidthADart = int Function(Pointer<Void>, int, int, Pointer<Int32>);
final GetCharWidthA = DynamicLibrary.open('GDI32.dll')
.lookupFunction<GetCharWidthANative, GetCharWidthADart>('GetCharWidthA');
// hdc : HDC -> Pointer<Void>
// iFirst : DWORD -> Uint32
// iLast : DWORD -> Uint32
// lpBuffer : INT* out -> Pointer<Int32>
// 文字列は package:ffi の "...".toNativeUtf16()/toNativeUtf8() で変換。{$mode objfpc}{$H+}
function GetCharWidthA(
hdc: THandle; // HDC
iFirst: DWORD; // DWORD
iLast: DWORD; // DWORD
lpBuffer: Pointer // INT* out
): BOOL; stdcall;
external 'GDI32.dll' name 'GetCharWidthA';import Foreign
import Foreign.C.Types
import Foreign.C.String
foreign import stdcall safe "GetCharWidthA"
c_GetCharWidthA :: Ptr () -> Word32 -> Word32 -> Ptr Int32 -> IO CInt
-- hdc : HDC -> Ptr ()
-- iFirst : DWORD -> Word32
-- iLast : DWORD -> Word32
-- lpBuffer : INT* out -> Ptr Int32
-- 要 GHC(Windows)。stdcall は x64 では ccall として扱われる。ブロックする API は safe 呼び出し推奨。open Ctypes
open Foreign
let getcharwidtha =
foreign "GetCharWidthA"
((ptr void) @-> uint32_t @-> uint32_t @-> (ptr int32_t) @-> returning int32_t)
(* hdc : HDC -> (ptr void) *)
(* iFirst : DWORD -> uint32_t *)
(* iLast : DWORD -> uint32_t *)
(* lpBuffer : INT* out -> (ptr int32_t) *)
(* foreign は cdecl 前提。x64 Windows では WINAPI と一致。構造体は ctypes structure を定義のこと。 *)(cffi:define-foreign-library gdi32 (t "GDI32.dll"))
(cffi:use-foreign-library gdi32)
(cffi:defcfun ("GetCharWidthA" get-char-width-a :convention :stdcall) :int32
(hdc :pointer) ; HDC
(i-first :uint32) ; DWORD
(i-last :uint32) ; DWORD
(lp-buffer :pointer)) ; INT* out
; isize/usize(INT_PTR/SIZE_T)は x64 前提で :int64/:uint64。x86 では :int32/:uint32。use Win32::API;
my $GetCharWidthA = Win32::API::More->new('GDI32',
'BOOL GetCharWidthA(HANDLE hdc, DWORD iFirst, DWORD iLast, LPVOID lpBuffer)');
# my $ret = $GetCharWidthA->Call($hdc, $iFirst, $iLast, $lpBuffer);
# hdc : HDC -> HANDLE
# iFirst : DWORD -> DWORD
# iLast : DWORD -> DWORD
# lpBuffer : INT* out -> LPVOID
# 値渡し構造体は pack() した文字列、または Win32::API::Struct を使用。関連項目
文字セット違い
- f GetCharWidthW (Unicode版) — 指定範囲の文字の幅を取得する。
類似 API
- f GetCharWidth32A — 指定範囲の文字幅を論理単位で取得する。
公式の関連項目
- f GetCharABCWidthsA — TrueTypeフォントの文字のABC幅を取得する。
- f GetCharABCWidthsFloatA — 文字のABC幅を小数値で取得する。
- f GetCharWidthFloatA — 指定範囲の文字幅を小数値で取得する。