This routine is a collection of related operations that handle bitmapped (BMP, JPEG, PNG, and TIFF) images. Only Windows machines can actually display bitmaps. On all other machines, this routine returns an error code.
CALL "W$BITMAP" USING OP-CODE, parameters, GIVING BITMAP-HANDLE
OP-CODE Numeric parameter | Selects the W$BITMAP operation to perform. The file acugui.def contains level 78 symbolic names for these operations. Unless otherwise noted, these operations can be used in a thin client environment. The specific operations are described below. |
parameters | Vary depending on the op-code chosen. |
BITMAP-HANDLE PIC S9(9) COMP-4 (or COMP-5) | BITMAP-HANDLE holds the return value of W$BITMAP. Values less than or equal to zero indicate errors. If you are loading or destroying ImageLists, this should be a COMP-5 field. |
W$BITMAP can be used to display a bitmapped image, load a bitmapped image into memory, or remove a bitmapped image and free its memory. You can use this routine to load a bitmapped image into memory as a Windows API data type called an ImageList, which treats the bitmap file as a series of fixed-width images. This provides a simplified way to load and destroy ImageLists when using the thin client. This routine can be used to capture screen shots of an active window or desktop. This routine can also be used to load IPictureDisp objects.
When it is trying to locate a bitmap file, W$BITMAP will search first for a resource with the specified name, and then for a disk file. Resources are named in a fashion similar to disk files, but without any directory information. (See the COPY RESOURCE statement in ACUCOBOL-GT Reference Manual for more information about including resources.)
W$BITMAP will examine files to determine the type of image format. If the file suffix is .jpg, .jpe or .jpeg, W$BITMAP assumes the file is a JPEG image; if the file suffix is .png, it assumes the files are in PNG format; if the file suffix is .tiff, .tff or .tif, it assumes the files are in TIFF format; otherwise, it assumes the files are in BMP format.
W$BITMAP loads 24-bit color or 8-bit grayscale images in jpeg, png, or tiff formats. It reads baseline and extended DCT sequential and progressive files that are Huffman encoded (file types SOF0, SOF1, SOF2). The JPG lossless mode format is not supported.