ホーム › Graphics.Gdi › EMRCOLORCORRECTPALETTE
EMRCOLORCORRECTPALETTE
構造体サイズ=各フィールドのバイト数(x64/x86 で異なる場合は x64/x86 と併記)。x64/x86 列=フィールドのバイトオフセット(HSPで dupptr / lpoke / wpoke 等に使用)。
フィールド
| フィールド | 型 | サイズ | x64 | x86 | 説明 |
|---|---|---|---|---|---|
| emr | EMR | 8 | +0 | +0 | 共通レコードヘッダを表すEMR構造体。 |
| ihPalette | DWORD | 4 | +8 | +8 | 色補正対象パレットのハンドルテーブル内インデックスを表す。 |
| nFirstEntry | DWORD | 4 | +12 | +12 | 補正を開始する先頭エントリのインデックスを表す。 |
| nPalEntries | DWORD | 4 | +16 | +16 | 補正するパレットエントリの個数を表す。 |
| nReserved | DWORD | 4 | +20 | +20 | 予約済みフィールド。使用しない。 |
各言語での定義
#include <windows.h>
// EMR (x64 8 / x86 8 バイト)
typedef struct EMR {
ENHANCED_METAFILE_RECORD_TYPE iType;
DWORD nSize;
} EMR;
// EMRCOLORCORRECTPALETTE (x64 24 / x86 24 バイト)
typedef struct EMRCOLORCORRECTPALETTE {
EMR emr;
DWORD ihPalette;
DWORD nFirstEntry;
DWORD nPalEntries;
DWORD nReserved;
} EMRCOLORCORRECTPALETTE;using System;
using System.Runtime.InteropServices;
[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Unicode)]
public struct EMR
{
public uint iType;
public uint nSize;
}
[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Unicode)]
public struct EMRCOLORCORRECTPALETTE
{
public EMR emr;
public uint ihPalette;
public uint nFirstEntry;
public uint nPalEntries;
public uint nReserved;
}Imports System.Runtime.InteropServices
<StructLayout(LayoutKind.Sequential, CharSet:=CharSet.Unicode)>
Public Structure EMR
Public iType As UInteger
Public nSize As UInteger
End Structure
<StructLayout(LayoutKind.Sequential, CharSet:=CharSet.Unicode)>
Public Structure EMRCOLORCORRECTPALETTE
Public emr As EMR
Public ihPalette As UInteger
Public nFirstEntry As UInteger
Public nPalEntries As UInteger
Public nReserved As UInteger
End Structureimport ctypes
from ctypes import wintypes
class EMR(ctypes.Structure):
_fields_ = [
("iType", wintypes.DWORD),
("nSize", wintypes.DWORD),
]
class EMRCOLORCORRECTPALETTE(ctypes.Structure):
_fields_ = [
("emr", EMR),
("ihPalette", wintypes.DWORD),
("nFirstEntry", wintypes.DWORD),
("nPalEntries", wintypes.DWORD),
("nReserved", wintypes.DWORD),
]#[repr(C)]
pub struct EMR {
pub iType: u32,
pub nSize: u32,
}
#[repr(C)]
pub struct EMRCOLORCORRECTPALETTE {
pub emr: EMR,
pub ihPalette: u32,
pub nFirstEntry: u32,
pub nPalEntries: u32,
pub nReserved: u32,
}import "golang.org/x/sys/windows"
type EMR struct {
iType uint32
nSize uint32
}
type EMRCOLORCORRECTPALETTE struct {
emr EMR
ihPalette uint32
nFirstEntry uint32
nPalEntries uint32
nReserved uint32
}type
EMR = record
iType: DWORD;
nSize: DWORD;
end;
EMRCOLORCORRECTPALETTE = record
emr: EMR;
ihPalette: DWORD;
nFirstEntry: DWORD;
nPalEntries: DWORD;
nReserved: DWORD;
end;const EMR = extern struct {
iType: u32,
nSize: u32,
};
const EMRCOLORCORRECTPALETTE = extern struct {
emr: EMR,
ihPalette: u32,
nFirstEntry: u32,
nPalEntries: u32,
nReserved: u32,
};type
EMR {.bycopy.} = object
iType: uint32
nSize: uint32
EMRCOLORCORRECTPALETTE {.bycopy.} = object
emr: EMR
ihPalette: uint32
nFirstEntry: uint32
nPalEntries: uint32
nReserved: uint32struct EMR
{
uint iType;
uint nSize;
}
struct EMRCOLORCORRECTPALETTE
{
EMR emr;
uint ihPalette;
uint nFirstEntry;
uint nPalEntries;
uint nReserved;
}HSP用 定義
HSP3.7/3.8 は構造体機能が無いため4byte整数配列(dim)+peek/poke で操作(32/64bitでサイズ・位置が異なる場合はタブで分割)。IronHSP は NSTRUCT(#defstruct/stdim/->)で32/64bit共通。
; HSP3.7/3.8 は構造体機能が無いため、4byte整数の配列変数で操作します。(x64 レイアウト)
; EMRCOLORCORRECTPALETTE サイズ: 24 バイト(x64)
dim st, 6 ; 4byte整数×6(構造体サイズ 24 / 4 切り上げ)
; emr : EMR (+0, 8byte) varptr(st)+0 を基点に操作(8byte:入れ子/配列)
; ihPalette : DWORD (+8, 4byte) st.2 = 値 / 値 = st.2 (lpoke/lpeek も可)
; nFirstEntry : DWORD (+12, 4byte) st.3 = 値 / 値 = st.3 (lpoke/lpeek も可)
; nPalEntries : DWORD (+16, 4byte) st.4 = 値 / 値 = st.4 (lpoke/lpeek も可)
; nReserved : DWORD (+20, 4byte) st.5 = 値 / 値 = st.5 (lpoke/lpeek も可)
; ※4byte境界の整数は添字 st.N(N=オフセット/4)で読み書き可。それ以外は peek/poke 系を使用。; IronHSP は NSTRUCT(構造体)をサポート。32bit/64bit どちらでも同じコードで動作します。
; ※GUID・入れ子構造体はデフォルト型でないため、依存する #defstruct を先に定義(下記に同梱)。
#defstruct global EMR
#field int iType
#field int nSize
#endstruct
#defstruct global EMRCOLORCORRECTPALETTE
#field EMR emr
#field int ihPalette
#field int nFirstEntry
#field int nPalEntries
#field int nReserved
#endstruct
stdim st, EMRCOLORCORRECTPALETTE ; NSTRUCT 変数を確保
st->ihPalette = 100
mes "ihPalette=" + st->ihPalette