LARGEBITGLYPH

LARGEBITGLYPH  struc
   lbgOrgX    dw  0 
   lbgOrgY    dw  0 
   lbgWidth   dw  0
   lbgHeight  dw  0
   lbgPixels  dd  0
LARGEBITGLYPH  ends
 

This structure is the header for a glyph stored in bit-packed row-oriented format. The glyph bitmap is stored immediately after this structure. Bit-packed format means that the glyph rows are packed together end-to-end. There is no padding out to byte boundaries at the end of a row.

Members

lbgOrgX
Distance from glyph origin to left edge of the glyph bitmap.
lbgOrgY
Distance from glyph origin to top edge of the glyph bitmap.
lbgWidth
Width of glyph bitmap in pixels.
lbgHeight
Height of glyph bitmap in pixels.
lbgPixels
Total number of pixels in the glyph.

See Also

NewFontSeg