Home | History | Annotate | Download | only in fpdf_font

Lines Matching refs:pBBox

273     CPDF_Array* pBBox = pFontDesc->GetArray(FX_BSTRC("FontBBox"));
274 if (pBBox) {
275 m_FontBBox.left = pBBox->GetInteger(0);
276 m_FontBBox.bottom = pBBox->GetInteger(1);
277 m_FontBBox.right = pBBox->GetInteger(2);
278 m_FontBBox.top = pBBox->GetInteger(3);
1628 CPDF_Array* pBBox = m_pFontDict->GetArray(FX_BSTRC("FontBBox"));
1629 if (pBBox) {
1630 m_FontBBox.left = (FX_INT32)(FXSYS_Mul(pBBox->GetNumber(0), xscale) * 1000);
1631 m_FontBBox.bottom = (FX_INT32)(FXSYS_Mul(pBBox->GetNumber(1), yscale) * 1000);
1632 m_FontBBox.right = (FX_INT32)(FXSYS_Mul(pBBox->GetNumber(2), xscale) * 1000);
1633 m_FontBBox.top = (FX_INT32)(FXSYS_Mul(pBBox->GetNumber(3), yscale) * 1000);