MemoryInfoType property (ILEADRaster)

Visual Basic example

Visual C++ 5.0 example

 

Syntax

long MemoryInfoType

Overview

Refer to Memory Storage Types for Bitmaps.

Remarks

Gets or sets a value that represents the memory type for the bitmap. This property is used for setting the memory type only if SET_MEMORYINFO_MEMORY is set in the MemoryInfoFlags property before calling the SetMemoryInfo method. Possible values for this property are:

Value

Meaning

MEMORY_TYPE_CONV

The bitmap is allocated in conventional memory. The other properties will be ignored.

MEMORY_TYPE_DISK

The bitmap is allocated entirely on disk. The other properties will be ignored.

MEMORY_TYPE_COMPRESSED

The bitmap is allocated in conventional memory and it is using run-length 1-bit compression. The other properties will be ignored.

MEMORY_TYPE_SUPERCOMPRESSED

The bitmap is allocated in conventional memory and is using SuperCompression (JPEG24-bit or 1-bit Fax G4). The other properties will be ignored.

MEMORY_TYPE_TILED

The bitmap is tiles and can contain a combination of conventional tiles and disk tiles. The other properties will be updated with information about the tiles.

This property is updated by the GetMemoryInfo method.

See Also

Elements:

MemoryInfoTileSize Property, MemoryInfoTotalTiles Property, MemoryInfoConventionalTiles Property, MemoryInfoMaxTileViews Property, MemoryInfoTileViews Property, MemoryInfoFlags Property, SetMemoryInfo Method, GetMemoryInfo Method

Topics:

Raster Images: Creating and Deleting