Home  /  Autodocs  /  graphics.library

NAME

BitMapScale
Perform raster scaling on a bit map. (V36)

SYNOPSIS

BitMapScale(bitScaleArgs)
A0

void BitMapScale(struct BitScaleArgs *);

FUNCTION

Scale a source bit map to a non-overlapping destination bit map.

INPUTS

bitScaleArgs
structure of parameters describing scale: bsa_SrcX, bsa_SrcY - origin of the source bits.

bsa_SrcWidth
see next

bsa_SrcHeight
number of bits to scale from in x

and y.

bsa_DestX
see next

bsa_DestY
origin of the destination.

bsa_DestWidth
see next

bsa_DestHeight
resulting number of bits in x

and y. NOTE: these values are set by this function.

bsa_XSrcFactor
see next

bsa_XDestFactor
equivalent to the ratio srcWidth:destWidth, but not necessarily the same numbers. Each must be in the range 1..16383.

bsa_YSrcFactor
see next

bsa_YDestFactor
equivalent to the ratio srcHeight:destHeight, but not necessarily the same numbers. Each must be in the range 1..16383.

bsa_SrcBitMap
source of the bits to scale.

bsa_DestBitMap
destination for the bits to scale. This had better be big enough!

bsa_Flags
future scaling options. Set it to zero!

bsa_XDDA
see next

bsa_YDDA
for future use. Need not be set by user.

bsa_Reserved1
see next

bsa_Reserved2
for future use. Need not be set.

RESULT

The destWidth, destHeight fields are set by this function as described above.

NOTES

BUGS

SEE ALSO

ScalerDiv() graphics/scale.h