GDI does not provide all GLYPH handles for big font size



Hello,

I have a problem to obtain all glyphs to a STROBJ if the fontsize is to big, for instance size 96 in Word. I only get the first glyph. If I take a smaler font size like 12 all handles to glyphs can be accessed.

Can someone of you help me? It would be very pleasefull.

I try to obtain it by using the following code:

STROBJ_vEnumStart(pstro);
do {
	bMore = STROBJ_bEnum(pstro, &cGlyphs, &pgp);
	for (i=0 ; (UINT)i < cGlyphs; i++) {
		...
	}
} where ( bMore );
.