anymap-height

Synopsis

(anymap-height anymap)

Parameters

  • anymap: Either a bitmap, a greymap, a 16 bit graymap or a colormap

Description

The procedures bitmap-height, greymap-height, graymap-height and colormap-height are aliases being bound to this primitive procedure for compatibility.

Side Effects

Return Value

The height of the anymap is returned.

Example

> (define bitmap (bitmap-create 100 100))
bitmap
> (define greymap (greymap-create 200 200))
greymap
> (define colormap (colormap-create 300 300))
colormap
> (anymap-height bitmap)
100
> (anymap-height greymap)
200
> (anymap-height colormap)
300
>