BITFIT

Synopsis
BITFIT width height
Description

Resizes (or "fits") the currently "cut" (BITCUT or BITCOPY) image into the specified dimensions. Anytime later, you can "paste" (BITPASTE) it back into the image. FMSLogo fits the "cut" image to a width of the width pixels and a height of the height pixels. The original "cut" image is replaced by this newly "fit" image.

BITFIT can permanently "scale" your image, whereas ZOOM only temporarily views it at a different scale.

Example
SETPENSIZE [2 2]
REPEAT 72 [CIRCLE2 100 SETPENCOLOR (LIST REPCOUNT*3 0 0) RIGHT 5]
PENUP
SETXY -50 -50
BITCUT 100 100
CLEARSCREEN
BITPASTE
CLEARSCREEN
BITFIT 200 100
BITPASTE

SourceForge.net Logo