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

WICRawRotationCapabilities

列挙型
基底型i4

メンバー 4

名前10進16進説明
WICRawRotationCapabilityNotSupported00x0回転はサポートされていません。
WICRawRotationCapabilityGetSupported10x1回転の設定操作はサポートされていません。
WICRawRotationCapabilityNinetyDegreesSupported20x290 度単位の回転がサポートされています。
WICRawRotationCapabilityFullySupported30x3すべての回転角度がサポートされています。

公式ドキュメント

コーデックの回転機能を指定します。

出典・ライセンス: 上記「公式ドキュメント」の内容は Microsoft の Win32 API ドキュメント(MicrosoftDocs/sdk-api)を日本語に翻訳・改変したものです。© Microsoft Corporation. CC BY 4.0 で提供。
Microsoft 公式リファレンス: 英語 (en-us) · 日本語 (ja-jp) · 原文ソース (GitHub)

各言語での定義

列挙メンバーの定義。HSP タブは #define global(値は16進)。

typedef enum WICRawRotationCapabilities : int {
    WICRawRotationCapabilityNotSupported = 0,
    WICRawRotationCapabilityGetSupported = 1,
    WICRawRotationCapabilityNinetyDegreesSupported = 2,
    WICRawRotationCapabilityFullySupported = 3
} WICRawRotationCapabilities;
public enum WICRawRotationCapabilities : int
{
    WICRawRotationCapabilityNotSupported = 0,
    WICRawRotationCapabilityGetSupported = 1,
    WICRawRotationCapabilityNinetyDegreesSupported = 2,
    WICRawRotationCapabilityFullySupported = 3,
}
Public Enum WICRawRotationCapabilities As Integer
    WICRawRotationCapabilityNotSupported = 0
    WICRawRotationCapabilityGetSupported = 1
    WICRawRotationCapabilityNinetyDegreesSupported = 2
    WICRawRotationCapabilityFullySupported = 3
End Enum
import enum

class WICRawRotationCapabilities(enum.IntEnum):
    WICRawRotationCapabilityNotSupported = 0
    WICRawRotationCapabilityGetSupported = 1
    WICRawRotationCapabilityNinetyDegreesSupported = 2
    WICRawRotationCapabilityFullySupported = 3
// WICRawRotationCapabilities
pub const WICRawRotationCapabilityNotSupported: i32 = 0;
pub const WICRawRotationCapabilityGetSupported: i32 = 1;
pub const WICRawRotationCapabilityNinetyDegreesSupported: i32 = 2;
pub const WICRawRotationCapabilityFullySupported: i32 = 3;
// WICRawRotationCapabilities
const (
	WICRawRotationCapabilityNotSupported int32 = 0
	WICRawRotationCapabilityGetSupported int32 = 1
	WICRawRotationCapabilityNinetyDegreesSupported int32 = 2
	WICRawRotationCapabilityFullySupported int32 = 3
)
const
  WICRawRotationCapabilityNotSupported = 0;
  WICRawRotationCapabilityGetSupported = 1;
  WICRawRotationCapabilityNinetyDegreesSupported = 2;
  WICRawRotationCapabilityFullySupported = 3;
// WICRawRotationCapabilities
pub const WICRawRotationCapabilityNotSupported: i32 = 0;
pub const WICRawRotationCapabilityGetSupported: i32 = 1;
pub const WICRawRotationCapabilityNinetyDegreesSupported: i32 = 2;
pub const WICRawRotationCapabilityFullySupported: i32 = 3;
const
  WICRawRotationCapabilityNotSupported* = 0
  WICRawRotationCapabilityGetSupported* = 1
  WICRawRotationCapabilityNinetyDegreesSupported* = 2
  WICRawRotationCapabilityFullySupported* = 3
enum WICRawRotationCapabilities : int {
    WICRawRotationCapabilityNotSupported = 0,
    WICRawRotationCapabilityGetSupported = 1,
    WICRawRotationCapabilityNinetyDegreesSupported = 2,
    WICRawRotationCapabilityFullySupported = 3,
}
#define global WICRawRotationCapabilityNotSupported           0x0
#define global WICRawRotationCapabilityGetSupported           0x1
#define global WICRawRotationCapabilityNinetyDegreesSupported 0x2
#define global WICRawRotationCapabilityFullySupported         0x3