public class PixelFormat extends Enum
光栅数据结构实际上就是像元的阵列,像元(或像素)是光栅数据的最基本信息存储单位。在 SuperMap 中有两种类型的光栅数据:栅格数据集(DatasetGrid)和影像数据集(DatasetImage),栅格数据集多用来进行栅格分析,因而其像元值为地物的属性值,如高程,降水量等;而影像数据集一般用来进行显示或作为底图,因而其像元值为颜色值或颜色的索引值。
限定符和类型 | 字段和说明 |
---|---|
static PixelFormat |
BIT16
每个像元用 16 个比特,即 2 个字节表示。
|
static PixelFormat |
BIT32
每个像元用 32 个比特,即 4 个字节来表示。
|
static PixelFormat |
BIT64
每个像元用 64 个比特,即 8 个字节来表示。
|
static PixelFormat |
BIT8
每个像元用 8 个比特,即 1 个字节来表示。
|
static PixelFormat |
DOUBLE
每个像元用 8 个字节来表示。
|
static PixelFormat |
RGB
每个像元用 24 个比特,即 3 个字节来表示。
|
static PixelFormat |
RGBA
每个像元用 32 个比特,即 4 个字节来表示。
|
static PixelFormat |
SINGLE
每个像元用 4 个字节来表示。
|
static PixelFormat |
UBIT1
每个像元用 1 个比特表示。
|
static PixelFormat |
UBIT16
每个像元用 16 个比特,即 2 个字节来表示。
|
static PixelFormat |
UBIT32
每个像元用 32 个比特,即 4 个字节来表示,可表示 0 到 4294967295 共 4294967296 个整数值。
|
static PixelFormat |
UBIT4
每个像元用 4 个比特表示。
|
static PixelFormat |
UBIT8
每个像元用 8 个比特,即 1 个字节表示。
|
static PixelFormat |
UNKONOWN
未知的像素格式。
|
public static final PixelFormat UNKONOWN
public static final PixelFormat UBIT1
public static final PixelFormat UBIT4
public static final PixelFormat UBIT8
public static final PixelFormat BIT8
public static final PixelFormat BIT16
public static final PixelFormat UBIT16
public static final PixelFormat RGB
public static final PixelFormat RGBA
public static final PixelFormat BIT32
public static final PixelFormat UBIT32
public static final PixelFormat BIT64
public static final PixelFormat SINGLE
public static final PixelFormat DOUBLE
Copyright © 2021–2024 SuperMap. All rights reserved.