OLD | NEW |
1 // Copyright 2016 PDFium Authors. All rights reserved. | 1 // Copyright 2016 PDFium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com | 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com |
6 | 6 |
7 #include "core/fpdfapi/fpdf_page/include/cpdf_imageobject.h" | 7 #include "core/fpdfapi/fpdf_page/include/cpdf_imageobject.h" |
8 | 8 |
| 9 #include "core/fpdfapi/fpdf_page/include/cpdf_image.h" |
9 #include "core/fpdfapi/fpdf_page/pageint.h" | 10 #include "core/fpdfapi/fpdf_page/pageint.h" |
10 #include "core/fpdfapi/fpdf_parser/include/cpdf_document.h" | 11 #include "core/fpdfapi/fpdf_parser/include/cpdf_document.h" |
11 | 12 |
12 CPDF_ImageObject::CPDF_ImageObject() : m_pImage(nullptr) {} | 13 CPDF_ImageObject::CPDF_ImageObject() : m_pImage(nullptr) {} |
13 | 14 |
14 CPDF_ImageObject::~CPDF_ImageObject() { | 15 CPDF_ImageObject::~CPDF_ImageObject() { |
15 if (!m_pImage) { | 16 if (!m_pImage) { |
16 return; | 17 return; |
17 } | 18 } |
18 if (m_pImage->IsInline() || | 19 if (m_pImage->IsInline() || |
(...skipping 16 matching lines...) Expand all Loading... |
35 void CPDF_ImageObject::Transform(const CFX_Matrix& matrix) { | 36 void CPDF_ImageObject::Transform(const CFX_Matrix& matrix) { |
36 m_Matrix.Concat(matrix); | 37 m_Matrix.Concat(matrix); |
37 CalcBoundingBox(); | 38 CalcBoundingBox(); |
38 } | 39 } |
39 | 40 |
40 void CPDF_ImageObject::CalcBoundingBox() { | 41 void CPDF_ImageObject::CalcBoundingBox() { |
41 m_Left = m_Bottom = 0; | 42 m_Left = m_Bottom = 0; |
42 m_Right = m_Top = 1.0f; | 43 m_Right = m_Top = 1.0f; |
43 m_Matrix.TransformRect(m_Left, m_Right, m_Top, m_Bottom); | 44 m_Matrix.TransformRect(m_Left, m_Right, m_Top, m_Bottom); |
44 } | 45 } |
OLD | NEW |