Purpose |
Create a memory bitmap and load an image into it. | ||||||||
Syntax |
GRAPHIC BITMAP LOAD BmpName$, x&, y& [,stretch&] TO hBmp??? | ||||||||
BitName$ |
The name of the bitmap image to load. | ||||||||
nWidth& |
The width of the bitmap, in pixels. | ||||||||
nHeight& |
The height of the bitmap, in pixels. | ||||||||
stretch& |
Stretch mode if the bitmap is to be resized. | ||||||||
hBmp??? |
The bitmap handle. | ||||||||
Remarks |
GRAPHIC BITMAP LOAD creates a new memory bitmap, loading a bitmap image from a resource or a disk file. This bitmap works just like a GRAPHIC WINDOW, except that it is not visible. The parameter BmpName$ specifies the name of the image to be loaded. If BmpName$ contains a period, it is presumed to be the name of a disk file. Otherwise, an attempt is made to load it from a resource -- if not found, it is then presumed to be a disk file. The parameters x& and y& specify the width and height of the bitmap, in pixels. If either of the size parameters are zero (0), the bitmap is loaded at its natural size. If either of the size parameters is different from the natural size, the bitmap is stretched or shrunk to the requested size. If the bitmap creation is successful, the bitmap handle is assigned to the variable hbmp???. If not successful, hbmp??? is set to zero. When you are finished using this memory bitmap, you must delete it with GRAPHIC BITMAP END. If the stretch& parameter is included, it is one of the values in the following table. If not included, or it is the value zero (0), the stretch mode is unchanged. An appropriate choice of stretch mode can substantially enhance the quality of bitmaps which are changed in size. The stretch mode equates are predefined in PowerBASIC. The 4 stretch modes are:
The following code will retrieve the natural size of an image in a bitmap file, in pixels: nFile& = FREEFILE | ||||||||
See also |
CONTROL ADD GRAPHIC, GRAPHIC ATTACH, GRAPHIC BITMAP END, GRAPHIC BITMAP NEW,GRAPHIC IMAGELIST, GRAPHIC WINDOW |