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

WICJpegIndexingOptions

列挙型
基底型i4

メンバー 2

名前10進16進説明
WICJpegIndexingOptionsGenerateOnDemand00x0インデックスの生成は、イメージに対して IWICBitmapSource::CopyPixels が呼び出されるまで遅延されます。
WICJpegIndexingOptionsGenerateOnLoad10x1インデックスの生成は、イメージが最初に読み込まれるときに実行されます。

公式ドキュメント

JPEG イメージのインデックスを作成する際のオプションを指定します。

出典・ライセンス: 上記「公式ドキュメント」の内容は Microsoft の Win32 API ドキュメント(MicrosoftDocs/sdk-api)を日本語に翻訳・改変したものです。© Microsoft Corporation. CC BY 4.0 で提供。
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 Enum
import 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* = 1
enum WICJpegIndexingOptions : int {
    WICJpegIndexingOptionsGenerateOnDemand = 0,
    WICJpegIndexingOptionsGenerateOnLoad = 1,
}
#define global WICJpegIndexingOptionsGenerateOnDemand 0x0
#define global WICJpegIndexingOptionsGenerateOnLoad   0x1