ImageFormat

wv.ImageFormat

Formats accepted when specifying texture images.

Index

Enumeration Members

Enumeration Members

wv.ImageFormat.Gray8
Gray8: 2

Uncompressed grayscale, 1 byte per pixel

wv.ImageFormat.GrayAlpha16
GrayAlpha16: 3

Uncompressed grayscale with alpha, 16 bits per pixel (1 byte per channel)

wv.ImageFormat.Jpeg
Jpeg: 4

JPEG data

wv.ImageFormat.Png
Png: 5

PNG data.

Note: Currently, applying PNGs inserted through the viewer API as textures will cause objects to which they are applied to be treated as transparent, which may cause undesirable behavior. This can be avoided by setting [[TextureModifier.Decal]] in [[TextureOptions]] when applying the texture. [[TextureModifier.Decal]] is not currently supported for PBR based materials.

wv.ImageFormat.Rgb24
Rgb24: 1

Uncompressed, interleaved RGB, 24 bits per pixel (1 byte per channel)

wv.ImageFormat.Rgba32
Rgba32: 0

Uncompressed, interleaved RGBA, 32 bits per pixel (1 byte per channel)