Ejemplo n.º 1
0
short
SWFText_getScaledLeading(SWFText text)
{
	SWFFont font = text->currentRecord->font.font;
	int height = text->currentRecord->height;

	return SWFFont_getScaledLeading(font) * height / 1024;
}
Ejemplo n.º 2
0
short
SWFText_getScaledLeading(SWFText text)
{
	SWFFont font = text->currentRecord->font.font;
	int height = text->currentRecord->height;

	if ( text->currentRecord->isBrowserFont )
		return 0;
	else
		return SWFFont_getScaledLeading(font) * height / 1024;
}
Ejemplo n.º 3
0
float
SWFFont_getLeading(SWFFont font)
{
    return SWFFont_getScaledLeading(font)/Ming_scale;
}