ホーム › Graphics.Imaging › WICJpegIndexingOptions
WICJpegIndexingOptions
列挙型メンバー 2
| 名前 | 10進 | 16進 | 説明 |
|---|---|---|---|
| WICJpegIndexingOptionsGenerateOnDemand | 0 | 0x0 | インデックスの生成は、イメージに対して IWICBitmapSource::CopyPixels が呼び出されるまで遅延されます。 |
| WICJpegIndexingOptionsGenerateOnLoad | 1 | 0x1 | インデックスの生成は、イメージが最初に読み込まれるときに実行されます。 |
公式ドキュメント
JPEG イメージのインデックスを作成する際のオプションを指定します。
出典・ライセンス: 上記「公式ドキュメント」の内容は Microsoft の Win32 API ドキュメント(MicrosoftDocs/sdk-api)を日本語に翻訳・改変したものです。© Microsoft Corporation. CC BY 4.0 で提供。
Microsoft 公式リファレンス: 英語 (en-us) · 日本語 (ja-jp) · 原文ソース (GitHub)
Microsoft 公式リファレンス: 英語 (en-us) · 日本語 (ja-jp) · 原文ソース (GitHub)
各言語での定義
列挙メンバーの定義。HSP タブは #define global(値は16進)。
typedef enum WICJpegIndexingOptions : int {
WICJpegIndexingOptionsGenerateOnDemand = 0,
WICJpegIndexingOptionsGenerateOnLoad = 1
} WICJpegIndexingOptions;public enum WICJpegIndexingOptions : int
{
WICJpegIndexingOptionsGenerateOnDemand = 0,
WICJpegIndexingOptionsGenerateOnLoad = 1,
}Public Enum WICJpegIndexingOptions As Integer
WICJpegIndexingOptionsGenerateOnDemand = 0
WICJpegIndexingOptionsGenerateOnLoad = 1
End Enumimport enum
class WICJpegIndexingOptions(enum.IntEnum):
WICJpegIndexingOptionsGenerateOnDemand = 0
WICJpegIndexingOptionsGenerateOnLoad = 1// WICJpegIndexingOptions
pub const WICJpegIndexingOptionsGenerateOnDemand: i32 = 0;
pub const WICJpegIndexingOptionsGenerateOnLoad: i32 = 1;// WICJpegIndexingOptions
const (
WICJpegIndexingOptionsGenerateOnDemand int32 = 0
WICJpegIndexingOptionsGenerateOnLoad int32 = 1
)const
WICJpegIndexingOptionsGenerateOnDemand = 0;
WICJpegIndexingOptionsGenerateOnLoad = 1;// WICJpegIndexingOptions
pub const WICJpegIndexingOptionsGenerateOnDemand: i32 = 0;
pub const WICJpegIndexingOptionsGenerateOnLoad: i32 = 1;const
WICJpegIndexingOptionsGenerateOnDemand* = 0
WICJpegIndexingOptionsGenerateOnLoad* = 1enum WICJpegIndexingOptions : int {
WICJpegIndexingOptionsGenerateOnDemand = 0,
WICJpegIndexingOptionsGenerateOnLoad = 1,
}#define global WICJpegIndexingOptionsGenerateOnDemand 0x0
#define global WICJpegIndexingOptionsGenerateOnLoad 0x1