Home | History | Annotate | Download | only in fpdf_font

Lines Matching refs:pBBox

274     CPDF_Array* pBBox = pFontDesc->GetArray(FX_BSTRC("FontBBox"));

275 if (pBBox) {
276 m_FontBBox.left = pBBox->GetInteger(0);
277 m_FontBBox.bottom = pBBox->GetInteger(1);
278 m_FontBBox.right = pBBox->GetInteger(2);
279 m_FontBBox.top = pBBox->GetInteger(3);
1640 CPDF_Array* pBBox = m_pFontDict->GetArray(FX_BSTRC("FontBBox"));
1641 if (pBBox) {
1642 m_FontBBox.left = (FX_INT32)(FXSYS_Mul(pBBox->GetNumber(0), xscale) * 1000);
1643 m_FontBBox.bottom = (FX_INT32)(FXSYS_Mul(pBBox->GetNumber(1), yscale) * 1000);
1644 m_FontBBox.right = (FX_INT32)(FXSYS_Mul(pBBox->GetNumber(2), xscale) * 1000);
1645 m_FontBBox.top = (FX_INT32)(FXSYS_Mul(pBBox->GetNumber(3), yscale) * 1000);