是用GetGlyphOutline返回的GLYPHMETRICS structure
GLYPHMETRICS 里面的
gmBlackBoxX 
Specifies the width of the smallest rectangle that completely encloses the glyph (its black box). 
gmBlackBoxY 
Specifies the height of the smallest rectangle that completely encloses the glyph (its black box). 是什么单位呢?网上使用的公式是
unsigned int nByteCount = ((textG.gmBlackBoxX +31) >>5) <<2;但是我不明白为什么这样
高手求解