| 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/include/cpdf_image.h" |
| 10 #include "core/fpdfapi/fpdf_page/pageint.h" | 10 #include "core/fpdfapi/fpdf_page/pageint.h" |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 | 26 |
| 27 CPDF_ImageObject* CPDF_ImageObject::Clone() const { | 27 CPDF_ImageObject* CPDF_ImageObject::Clone() const { |
| 28 CPDF_ImageObject* obj = new CPDF_ImageObject; | 28 CPDF_ImageObject* obj = new CPDF_ImageObject; |
| 29 obj->CopyData(this); | 29 obj->CopyData(this); |
| 30 | 30 |
| 31 obj->m_pImage = m_pImage->Clone(); | 31 obj->m_pImage = m_pImage->Clone(); |
| 32 obj->m_Matrix = m_Matrix; | 32 obj->m_Matrix = m_Matrix; |
| 33 return obj; | 33 return obj; |
| 34 } | 34 } |
| 35 | 35 |
| 36 CPDF_PageObject::Type CPDF_ImageObject::GetType() const { |
| 37 return IMAGE; |
| 38 } |
| 39 |
| 36 void CPDF_ImageObject::Transform(const CFX_Matrix& matrix) { | 40 void CPDF_ImageObject::Transform(const CFX_Matrix& matrix) { |
| 37 m_Matrix.Concat(matrix); | 41 m_Matrix.Concat(matrix); |
| 38 CalcBoundingBox(); | 42 CalcBoundingBox(); |
| 39 } | 43 } |
| 40 | 44 |
| 45 bool CPDF_ImageObject::IsImage() const { |
| 46 return true; |
| 47 } |
| 48 |
| 49 CPDF_ImageObject* CPDF_ImageObject::AsImage() { |
| 50 return this; |
| 51 } |
| 52 |
| 53 const CPDF_ImageObject* CPDF_ImageObject::AsImage() const { |
| 54 return this; |
| 55 } |
| 56 |
| 41 void CPDF_ImageObject::CalcBoundingBox() { | 57 void CPDF_ImageObject::CalcBoundingBox() { |
| 42 m_Left = m_Bottom = 0; | 58 m_Left = m_Bottom = 0; |
| 43 m_Right = m_Top = 1.0f; | 59 m_Right = m_Top = 1.0f; |
| 44 m_Matrix.TransformRect(m_Left, m_Right, m_Top, m_Bottom); | 60 m_Matrix.TransformRect(m_Left, m_Right, m_Top, m_Bottom); |
| 45 } | 61 } |
| OLD | NEW |