Home
last modified time | relevance | path

Searched refs:m_PageSize (Results 1 – 2 of 2) sorted by relevance

/external/pdfium/core/fpdfapi/page/
Dcpdf_page.cpp23 m_PageSize(100, 100), in CPDF_Page()
54 return m_PageSize.width; in GetPageWidth()
58 return m_PageSize.height; in GetPageHeight()
118 if (m_PageSize.width == 0 || m_PageSize.height == 0) in GetDisplayMatrix()
168 CFX_Matrix matrix((x2 - x0) / m_PageSize.width, (y2 - y0) / m_PageSize.width, in GetDisplayMatrix()
169 (x1 - x0) / m_PageSize.height, in GetDisplayMatrix()
170 (y1 - y0) / m_PageSize.height, x0, y0); in GetDisplayMatrix()
191 m_PageSize.width = m_BBox.Width(); in UpdateDimensions()
192 m_PageSize.height = m_BBox.Height(); in UpdateDimensions()
199 std::swap(m_PageSize.width, m_PageSize.height); in UpdateDimensions()
[all …]
Dcpdf_page.h77 const CFX_SizeF& GetPageSize() const { return m_PageSize; } in GetPageSize()
103 CFX_SizeF m_PageSize; variable