Home | History | Annotate | Download | only in page

Lines Matching refs:pFontDict

130 CPDF_Font* CPDF_DocPageData::GetFont(CPDF_Dictionary* pFontDict) {
131 if (!pFontDict)
135 auto it = m_FontMap.find(pFontDict);
142 std::unique_ptr<CPDF_Font> pFont = CPDF_Font::Create(m_pPDFDoc, pFontDict);
150 m_FontMap[pFontDict] = pFontData;
199 void CPDF_DocPageData::ReleaseFont(const CPDF_Dictionary* pFontDict) {
200 if (!pFontDict)
203 auto it = m_FontMap.find(pFontDict);
487 CPDF_Dictionary* pFontDict = pFontStream->GetDict();
488 int32_t org_size = pFontDict->GetIntegerFor("Length1") +
489 pFontDict->GetIntegerFor("Length2") +
490 pFontDict->GetIntegerFor("Length3");