graphic function ttg_insertmet()

A Tool&Task meta file is a bitmap file for large bitmaps. The format starts with 4 bytes width [pixels, little endian] and 4 bytes height [pixels, little endian]. The rest is a bottoms up bitmap without padding bytes. length of file: width * height * 3

The format was used for m_printampli where huge files were needed to effectively establish the overlap system. The following example should give an idea of the size of such a file:
Assume a printer has a resolution of 600 DPI and you want to create a file to cover 100 by 100 inches. (= 60000 * 60000 pixels * 3 bytes per pixel = 10.8 GByte (+ 8 bytes for the header).

The function ttg_insertmet() copies 24 bit bitmaps from this meta file format into a regular bitmap (gTTG_Target)

Parameters:

1. x coordinate of the upper left pixel of the meta file
2. y coordinate of the upper left pixel of the meta file
3. width of the bitmap in the meta file
4. height of the bitmap in the meta file
5. x coordinate of the upper left pixel in the target bitmap
6. y coordinate of the upper left pixel in the target bitmap
7. fullpath of the Tool&Task meta file (.met)