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

GdipSetImageAttributesToIdentity

関数
指定カテゴリのイメージ属性を恒等変換に設定する。
DLLgdiplus.dll呼出規約winapi

シグネチャ

// gdiplus.dll
#include <windows.h>

Status GdipSetImageAttributesToIdentity(
    GpImageAttributes* imageattr,
    ColorAdjustType type
);

パラメーター

名前方向説明
imageattrGpImageAttributes*inout操作対象のGpImageAttributesオブジェクトへのポインタ。
typeColorAdjustTypein設定対象のカテゴリを示すColorAdjustType列挙値(Default/Bitmap/Brush等)。

戻り値の型: Status

各言語での呼び出し定義

// gdiplus.dll
#include <windows.h>

Status GdipSetImageAttributesToIdentity(
    GpImageAttributes* imageattr,
    ColorAdjustType type
);
[DllImport("gdiplus.dll", ExactSpelling = true)]
static extern int GdipSetImageAttributesToIdentity(
    IntPtr imageattr,   // GpImageAttributes* in/out
    int type   // ColorAdjustType
);
<DllImport("gdiplus.dll", ExactSpelling:=True)>
Public Shared Function GdipSetImageAttributesToIdentity(
    imageattr As IntPtr,   ' GpImageAttributes* in/out
    type As Integer   ' ColorAdjustType
) As Integer
End Function
' imageattr : GpImageAttributes* in/out
' type : ColorAdjustType
Declare PtrSafe Function GdipSetImageAttributesToIdentity Lib "gdiplus" ( _
    ByVal imageattr As LongPtr, _
    ByVal type As Long) As Long
' VBA7前提(PtrSafe)。32bit Office では LongPtr→Long。Integer=16bit / Long=32bit / LongLong=64bit。
import ctypes
from ctypes import wintypes

GdipSetImageAttributesToIdentity = ctypes.windll.gdiplus.GdipSetImageAttributesToIdentity
GdipSetImageAttributesToIdentity.restype = ctypes.c_int
GdipSetImageAttributesToIdentity.argtypes = [
    ctypes.c_void_p,  # imageattr : GpImageAttributes* in/out
    ctypes.c_int,  # type : ColorAdjustType
]
require 'fiddle'
require 'fiddle/import'

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

var (
	gdiplus = windows.NewLazySystemDLL("gdiplus.dll")
	procGdipSetImageAttributesToIdentity = gdiplus.NewProc("GdipSetImageAttributesToIdentity")
)

// imageattr (GpImageAttributes* in/out), type (ColorAdjustType)
r1, _, err := procGdipSetImageAttributesToIdentity.Call(
	uintptr(imageattr),
	uintptr(type),
)
_ = err  // syscall.Errno (valid when the call sets last-error)
_ = r1   // Status
function GdipSetImageAttributesToIdentity(
  imageattr: Pointer;   // GpImageAttributes* in/out
  type: Integer   // ColorAdjustType
): Integer; stdcall;
  external 'gdiplus.dll' name 'GdipSetImageAttributesToIdentity';
result := DllCall("gdiplus\GdipSetImageAttributesToIdentity"
    , "Ptr", imageattr   ; GpImageAttributes* in/out
    , "Int", type   ; ColorAdjustType
    , "Int")   ; return: Status
●GdipSetImageAttributesToIdentity(imageattr, type) = DLL("gdiplus.dll", "int GdipSetImageAttributesToIdentity(void*, int)")
# 呼び出し: GdipSetImageAttributesToIdentity(imageattr, type)
# imageattr : GpImageAttributes* in/out -> "void*"
# type : ColorAdjustType -> "int"
# なでしこ1は32bit・ANSI(Shift_JIS)。文字列=char*(ANSI)、ポインタ/ハンドル=void*(4byte)。
const std = @import("std");

extern "gdiplus" fn GdipSetImageAttributesToIdentity(
    imageattr: [*c]GpImageAttributes, // GpImageAttributes* in/out
    type: i32 // ColorAdjustType
) callconv(std.os.windows.WINAPI) i32;
proc GdipSetImageAttributesToIdentity(
    imageattr: ptr GpImageAttributes,  # GpImageAttributes* in/out
    `type`: int32  # ColorAdjustType
): int32 {.importc: "GdipSetImageAttributesToIdentity", stdcall, dynlib: "gdiplus.dll".}
pragma(lib, "gdiplus");
extern(Windows)
int GdipSetImageAttributesToIdentity(
    GpImageAttributes* imageattr,   // GpImageAttributes* in/out
    int type   // ColorAdjustType
);
ccall((:GdipSetImageAttributesToIdentity, "gdiplus.dll"), stdcall, Int32,
      (Ptr{GpImageAttributes}, Int32),
      imageattr, type)
# imageattr : GpImageAttributes* in/out -> Ptr{GpImageAttributes}
# type : ColorAdjustType -> Int32
# stdcall は 32bit のみ意味を持つ(x64 では無視)。
local ffi = require("ffi")
ffi.cdef[[
int32_t GdipSetImageAttributesToIdentity(
    void* imageattr,
    int32_t type);
]]
local gdiplus = ffi.load("gdiplus")
-- gdiplus.GdipSetImageAttributesToIdentity(imageattr, type)
-- imageattr : GpImageAttributes* in/out
-- type : ColorAdjustType
-- 構造体/GUIDへのポインタは cdef が通るよう void* で表記(実型は各引数コメント参照)。値渡し構造体・enum は対応する typedef を cdef に追加すること。
const koffi = require('koffi');
const lib = koffi.load('gdiplus.dll');
const GdipSetImageAttributesToIdentity = lib.func('__stdcall', 'GdipSetImageAttributesToIdentity', 'int32_t', ['void *', 'int32_t']);
// GdipSetImageAttributesToIdentity(imageattr, type)
// imageattr : GpImageAttributes* in/out -> 'void *'
// type : ColorAdjustType -> 'int32_t'
// 出力ポインタは koffi.out(...) で包む。構造体は koffi.struct で定義。
const lib = Deno.dlopen("gdiplus.dll", {
  GdipSetImageAttributesToIdentity: { parameters: ["pointer", "i32"], result: "i32" },
});
// lib.symbols.GdipSetImageAttributesToIdentity(imageattr, type)
// imageattr : GpImageAttributes* in/out -> "pointer"
// type : ColorAdjustType -> "i32"
// 文字列引数は "buffer"(NUL 終端のバイト列を Uint8Array で渡す)。
// 値渡し構造体は { struct: [ ...field types... ] } を使用。
<?php
$ffi = FFI::cdef(<<<C
int32_t GdipSetImageAttributesToIdentity(
    void* imageattr,
    int32_t type);
C, "gdiplus.dll");
// $ffi->GdipSetImageAttributesToIdentity(imageattr, type);
// imageattr : GpImageAttributes* in/out
// type : ColorAdjustType
// 構造体/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 Gdiplus extends StdCallLibrary {
    Gdiplus INSTANCE = Native.load("gdiplus", Gdiplus.class);
    int GdipSetImageAttributesToIdentity(
        Pointer imageattr,   // GpImageAttributes* in/out
        int type   // ColorAdjustType
    );
}
@[Link("gdiplus")]
lib Libgdiplus
  fun GdipSetImageAttributesToIdentity = GdipSetImageAttributesToIdentity(
    imageattr : GpImageAttributes*,   # GpImageAttributes* in/out
    type_ : Int32   # ColorAdjustType
  ) : Int32
end
# 構造体/GUID/enum は lib 内に対応する型定義が必要。
# 呼出規約: x64 は規約統一のため OK。x86(32bit)は WINAPI=stdcall だが Crystal の fun に stdcall 付与構文がなく非対応。
import 'dart:ffi';
import 'package:ffi/ffi.dart';

typedef GdipSetImageAttributesToIdentityNative = Int32 Function(Pointer<Void>, Int32);
typedef GdipSetImageAttributesToIdentityDart = int Function(Pointer<Void>, int);
final GdipSetImageAttributesToIdentity = DynamicLibrary.open('gdiplus.dll')
    .lookupFunction<GdipSetImageAttributesToIdentityNative, GdipSetImageAttributesToIdentityDart>('GdipSetImageAttributesToIdentity');
// imageattr : GpImageAttributes* in/out -> Pointer<Void>
// type : ColorAdjustType -> Int32
// 文字列は package:ffi の "...".toNativeUtf16()/toNativeUtf8() で変換。
{$mode objfpc}{$H+}
function GdipSetImageAttributesToIdentity(
  imageattr: Pointer;   // GpImageAttributes* in/out
  type: Integer   // ColorAdjustType
): Integer; stdcall;
  external 'gdiplus.dll' name 'GdipSetImageAttributesToIdentity';
import Foreign
import Foreign.C.Types
import Foreign.C.String

foreign import stdcall safe "GdipSetImageAttributesToIdentity"
  c_GdipSetImageAttributesToIdentity :: Ptr () -> Int32 -> IO Int32
-- imageattr : GpImageAttributes* in/out -> Ptr ()
-- type : ColorAdjustType -> Int32
-- 要 GHC(Windows)。stdcall は x64 では ccall として扱われる。ブロックする API は safe 呼び出し推奨。
open Ctypes
open Foreign

let gdipsetimageattributestoidentity =
  foreign "GdipSetImageAttributesToIdentity"
    ((ptr void) @-> int32_t @-> returning int32_t)
(* imageattr : GpImageAttributes* in/out -> (ptr void) *)
(* type : ColorAdjustType -> int32_t *)
(* foreign は cdecl 前提。x64 Windows では WINAPI と一致。構造体は ctypes structure を定義のこと。 *)
(cffi:define-foreign-library gdiplus (t "gdiplus.dll"))
(cffi:use-foreign-library gdiplus)

(cffi:defcfun ("GdipSetImageAttributesToIdentity" gdip-set-image-attributes-to-identity :convention :stdcall) :int32
  (imageattr :pointer)   ; GpImageAttributes* in/out
  (type :int32))   ; ColorAdjustType
; isize/usize(INT_PTR/SIZE_T)は x64 前提で :int64/:uint64。x86 では :int32/:uint32。
use Win32::API;
my $GdipSetImageAttributesToIdentity = Win32::API::More->new('gdiplus',
    'int GdipSetImageAttributesToIdentity(LPVOID imageattr, int type)');
# my $ret = $GdipSetImageAttributesToIdentity->Call($imageattr, $type);
# imageattr : GpImageAttributes* in/out -> LPVOID
# type : ColorAdjustType -> int
# 値渡し構造体は pack() した文字列、または Win32::API::Struct を使用。

関連項目

使用する型