Home
last modified time | relevance | path

Searched refs:text_matrix (Results 1 – 5 of 5) sorted by relevance

/external/pdfium/core/src/fpdfapi/fpdf_render/
Dfpdf_render_text.cpp131 CFX_Matrix image_matrix, text_matrix; in RenderGlyph() local
133 text_matrix.Set(pMatrix->a, pMatrix->b, pMatrix->c, pMatrix->d, 0, 0); in RenderGlyph()
134 image_matrix.Concat(text_matrix); in RenderGlyph()
254 CFX_Matrix text_matrix; in ProcessText() local
255 textobj->GetTextMatrix(&text_matrix); in ProcessText()
256 if (IsAvailableMatrix(text_matrix) == FALSE) { in ProcessText()
262 &text_matrix, bFill, bStroke); in ProcessText()
272 text_matrix.ConcatInverse(ctm); in ProcessText()
293 textobj->m_pCharPos, pFont, font_size, &text_matrix, pDeviceMatrix, in ProcessText()
296 text_matrix.Concat(*pObj2Device); in ProcessText()
[all …]
Dfpdf_render.cpp844 CFX_Matrix text_matrix; in ProcessTransparency() local
845 textobj->GetTextMatrix(&text_matrix); in ProcessTransparency()
849 textobj->m_TextState.GetFontSize(), &text_matrix, &new_matrix, in ProcessTransparency()
/external/pdfium/core/src/fpdfapi/fpdf_page/
Dfpdf_page.cpp558 CFX_Matrix text_matrix; in Transform() local
559 GetTextMatrix(&text_matrix); in Transform()
560 text_matrix.Concat(matrix); in Transform()
562 pTextMatrix[0] = text_matrix.GetA(); in Transform()
563 pTextMatrix[1] = text_matrix.GetC(); in Transform()
564 pTextMatrix[2] = text_matrix.GetB(); in Transform()
565 pTextMatrix[3] = text_matrix.GetD(); in Transform()
566 m_PosX = text_matrix.GetE(); in Transform()
567 m_PosY = text_matrix.GetF(); in Transform()
Dfpdf_page_parser.cpp1345 CFX_Matrix text_matrix(m_pCurStates->m_TextHorzScale, 0.0f, 0.0f, 1.0f, 0.0f, in OnChangeTextMatrix() local
1347 text_matrix.Concat(m_pCurStates->m_TextMatrix); in OnChangeTextMatrix()
1348 text_matrix.Concat(m_pCurStates->m_CTM); in OnChangeTextMatrix()
1349 text_matrix.Concat(m_mtContentToUser); in OnChangeTextMatrix()
1351 pTextMatrix[0] = text_matrix.a; in OnChangeTextMatrix()
1352 pTextMatrix[1] = text_matrix.c; in OnChangeTextMatrix()
1353 pTextMatrix[2] = text_matrix.b; in OnChangeTextMatrix()
1354 pTextMatrix[3] = text_matrix.d; in OnChangeTextMatrix()
/external/pdfium/core/src/fxge/apple/
Dfx_quartz_device.cpp770 CFX_Matrix text_matrix; in CG_DrawGlypRun() local
772 text_matrix.Concat(*pObject2Device); in CG_DrawGlypRun()
775 CGAffineTransformMake(text_matrix.a, text_matrix.b, text_matrix.c, in CG_DrawGlypRun()
776 text_matrix.d, text_matrix.e, text_matrix.f); in CG_DrawGlypRun()