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

GdipSetImageAttributesGamma

関数
画像属性にガンマ補正値を設定する。
DLLgdiplus.dll呼出規約winapi

シグネチャ

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

Status GdipSetImageAttributesGamma(
    GpImageAttributes* imageattr,
    ColorAdjustType type,
    BOOL enableFlag,
    FLOAT gamma
);

パラメーター

名前方向説明
imageattrGpImageAttributes*inout操作対象のGpImageAttributesオブジェクトへのポインタ。
typeColorAdjustTypein適用対象のカテゴリを示すColorAdjustType列挙値。
enableFlagBOOLinガンマ補正を有効にするかを示すBOOL(FALSEで無効化)。
gammaFLOATin適用するガンマ値。通常0.0より大きい正の浮動小数点を指定する。

戻り値の型: Status

各言語での呼び出し定義

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

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

GdipSetImageAttributesGamma = ctypes.windll.gdiplus.GdipSetImageAttributesGamma
GdipSetImageAttributesGamma.restype = ctypes.c_int
GdipSetImageAttributesGamma.argtypes = [
    ctypes.c_void_p,  # imageattr : GpImageAttributes* in/out
    ctypes.c_int,  # type : ColorAdjustType
    wintypes.BOOL,  # enableFlag : BOOL
    ctypes.c_float,  # gamma : FLOAT
]
require 'fiddle'
require 'fiddle/import'

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

var (
	gdiplus = windows.NewLazySystemDLL("gdiplus.dll")
	procGdipSetImageAttributesGamma = gdiplus.NewProc("GdipSetImageAttributesGamma")
)

// imageattr (GpImageAttributes* in/out), type (ColorAdjustType), enableFlag (BOOL), gamma (FLOAT)
r1, _, err := procGdipSetImageAttributesGamma.Call(
	uintptr(imageattr),
	uintptr(type),
	uintptr(enableFlag),
	uintptr(math.Float32bits(gamma)),
)
_ = err  // syscall.Errno (valid when the call sets last-error)
_ = r1   // Status
// 注意: float/double 引数は proc.Call では XMM レジスタに渡せません。
// windows.SyscallN(proc.Addr(), math.Float64bits(x), ...) もしくは cgo を使用してください。
function GdipSetImageAttributesGamma(
  imageattr: Pointer;   // GpImageAttributes* in/out
  type: Integer;   // ColorAdjustType
  enableFlag: BOOL;   // BOOL
  gamma: Single   // FLOAT
): Integer; stdcall;
  external 'gdiplus.dll' name 'GdipSetImageAttributesGamma';
result := DllCall("gdiplus\GdipSetImageAttributesGamma"
    , "Ptr", imageattr   ; GpImageAttributes* in/out
    , "Int", type   ; ColorAdjustType
    , "Int", enableFlag   ; BOOL
    , "Float", gamma   ; FLOAT
    , "Int")   ; return: Status
●GdipSetImageAttributesGamma(imageattr, type, enableFlag, gamma) = DLL("gdiplus.dll", "int GdipSetImageAttributesGamma(void*, int, bool, float)")
# 呼び出し: GdipSetImageAttributesGamma(imageattr, type, enableFlag, gamma)
# imageattr : GpImageAttributes* in/out -> "void*"
# type : ColorAdjustType -> "int"
# enableFlag : BOOL -> "bool"
# gamma : FLOAT -> "float"
# なでしこ1は32bit・ANSI(Shift_JIS)。文字列=char*(ANSI)、ポインタ/ハンドル=void*(4byte)。
const std = @import("std");

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

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

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

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

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

関連項目

使用する型