CALL "W$SCALE" USING bitmapHandle newWidth newHeight windowHandle scaleMode scaleAlign GIVING scaledBitmapHandle |
bitmapHandle | USAGE HANDLE | It specifies an handle of an existing image. | |
newWidth | any numeric data item or numeric literal | Specifies the width, in window's cells, of the target area that will contain the new image. | |
newHeight | any numeric data item or numeric literal | Specifies the height, in window's cells, of the target area that will contain the new image. | |
windowHandle | USAGE HANDLE | Specifies the handle of an existing window. It is used to calculate the cell size. If this parameter is omitted or zero, then newWidth and newHeight are considered pixels. | |
scaleMode | any numeric data item or numeric literal | Specifies the scaling method. Valid values, defined in isgui.def, are: | |
WSCALE-STRETCH | The image is stretched to fit the target area | ||
WSCALE-RESIZE-XY | Aspect ratio is maintained. The unused part of the target area, if any, will be transparent. | ||
WSCALE-RESIZE-X | The image is resized so that its width matches the width of the target area, maintaining the aspect ratio. If the new image does not fit vertically the target area, that part of the image that exceeds the space available is truncated. Otherwise, the unused part of the target area will be transparent. | ||
WSCALE-RESIZE-Y | The image is resized so that its height matches the height of the target area, maintaining the aspect ratio. If the new image does not fit horizontally the target area, that part of the image that exceeds the space available is truncated. Otherwise, the unused part of the target area will be transparent. | ||
scaleAlign | any numeric data item or numeric literal | Specifies the placement of the new image in the target area. Valid values, defined in isgui.def, are: | |
WSCALE-AL-BOTTOM-LEFT WSCALE-AL-BOTTOM-CENTER WSCALE-AL-BOTTOM-RIGHT WSCALE-AL-MIDDLE-LEFT WSCALE-AL-MIDDLE-CENTER WSCALE-AL-MIDDLE-RIGHT WSCALE-AL-TOP-LEFT WSCALE-AL-TOP-CENTER WSCALE-AL-TOP-RIGHT | The new image is bottom/left aligned. The new image is bottom/center aligned. The new image is bottom/right aligned. The new image is middle/left aligned. The new image is middle/center aligned. The new image is middle/right aligned. The new image is top/left aligned. The new image is top/center aligned. The new image is top/right aligned. |
*> 77 h-bitmap handle. *> 77 h-bitmap-resize handle. *> 77 hWin handle. display independent graphical window color 65793 with system menu title "W$SCALE Routine" handle hWin. ... call "w$scale" using h-bitmap 22 10 hWin wscale-resize-xy wscale-al-top-left giving h-bitmap-resize. |