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

WICJpegScanType

列挙型
基底型i4

メンバー 3

名前10進16進
WICJpegScanTypeInterleaved00x0
WICJpegScanTypePlanarComponents10x1
WICJpegScanTypeProgressive20x2

各言語での定義

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

typedef enum WICJpegScanType : int {
    WICJpegScanTypeInterleaved = 0,
    WICJpegScanTypePlanarComponents = 1,
    WICJpegScanTypeProgressive = 2
} WICJpegScanType;
public enum WICJpegScanType : int
{
    WICJpegScanTypeInterleaved = 0,
    WICJpegScanTypePlanarComponents = 1,
    WICJpegScanTypeProgressive = 2,
}
Public Enum WICJpegScanType As Integer
    WICJpegScanTypeInterleaved = 0
    WICJpegScanTypePlanarComponents = 1
    WICJpegScanTypeProgressive = 2
End Enum
import enum

class WICJpegScanType(enum.IntEnum):
    WICJpegScanTypeInterleaved = 0
    WICJpegScanTypePlanarComponents = 1
    WICJpegScanTypeProgressive = 2
// WICJpegScanType
pub const WICJpegScanTypeInterleaved: i32 = 0;
pub const WICJpegScanTypePlanarComponents: i32 = 1;
pub const WICJpegScanTypeProgressive: i32 = 2;
// WICJpegScanType
const (
	WICJpegScanTypeInterleaved int32 = 0
	WICJpegScanTypePlanarComponents int32 = 1
	WICJpegScanTypeProgressive int32 = 2
)
const
  WICJpegScanTypeInterleaved = 0;
  WICJpegScanTypePlanarComponents = 1;
  WICJpegScanTypeProgressive = 2;
// WICJpegScanType
pub const WICJpegScanTypeInterleaved: i32 = 0;
pub const WICJpegScanTypePlanarComponents: i32 = 1;
pub const WICJpegScanTypeProgressive: i32 = 2;
const
  WICJpegScanTypeInterleaved* = 0
  WICJpegScanTypePlanarComponents* = 1
  WICJpegScanTypeProgressive* = 2
enum WICJpegScanType : int {
    WICJpegScanTypeInterleaved = 0,
    WICJpegScanTypePlanarComponents = 1,
    WICJpegScanTypeProgressive = 2,
}
#define global WICJpegScanTypeInterleaved      0x0
#define global WICJpegScanTypePlanarComponents 0x1
#define global WICJpegScanTypeProgressive      0x2