Home | History | Annotate | Download | only in fpdf_page

Lines Matching refs:m_BBox

866         m_BBox = pCropBox->GetRect();

867 m_BBox.Normalize();
869 if (m_BBox.IsEmpty()) {
870 m_BBox = mediabox;
872 m_BBox.Intersect(mediabox);
875 m_PageHeight = m_BBox.right - m_BBox.left;
876 m_PageWidth = m_BBox.top - m_BBox.bottom;
878 m_PageWidth = m_BBox.right - m_BBox.left;
879 m_PageHeight = m_BBox.top - m_BBox.bottom;
883 m_PageMatrix.Set(1.0f, 0, 0, 1.0f, -m_BBox.left, -m_BBox.bottom);
886 m_PageMatrix.Set(0, -1.0f, 1.0f, 0, -m_BBox.bottom, m_BBox.right);
889 m_PageMatrix.Set(-1.0f, 0, 0, -1.0f, m_BBox.right, m_BBox.top);
892 m_PageMatrix.Set(0, 1.0f, -1.0f, 0, m_BBox.top, -m_BBox.left);