Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(280)

Side by Side Diff: core/fpdfapi/fpdf_page/cpdf_imageobject.cpp

Issue 1811053002: Move core/include/fpdfapi/fpdf_pageobj.h into core/fpdfapi. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « core/fpdfapi/fpdf_page/cpdf_graphstate.h ('k') | core/fpdfapi/fpdf_page/cpdf_page.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2016 PDFium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
6
7 #include "core/fpdfapi/fpdf_page/include/cpdf_imageobject.h"
8
9 #include "core/fpdfapi/fpdf_page/pageint.h"
10 #include "core/fpdfapi/fpdf_parser/include/cpdf_document.h"
11
12 CPDF_ImageObject::CPDF_ImageObject() : m_pImage(nullptr) {}
13
14 CPDF_ImageObject::~CPDF_ImageObject() {
15 if (!m_pImage) {
16 return;
17 }
18 if (m_pImage->IsInline() ||
19 (m_pImage->GetStream() && m_pImage->GetStream()->GetObjNum() == 0)) {
20 delete m_pImage;
21 } else {
22 m_pImage->GetDocument()->GetPageData()->ReleaseImage(m_pImage->GetStream());
23 }
24 }
25
26 CPDF_ImageObject* CPDF_ImageObject::Clone() const {
27 CPDF_ImageObject* obj = new CPDF_ImageObject;
28 obj->CopyData(this);
29
30 obj->m_pImage = m_pImage->Clone();
31 obj->m_Matrix = m_Matrix;
32 return obj;
33 }
34
35 void CPDF_ImageObject::Transform(const CFX_Matrix& matrix) {
36 m_Matrix.Concat(matrix);
37 CalcBoundingBox();
38 }
39
40 void CPDF_ImageObject::CalcBoundingBox() {
41 m_Left = m_Bottom = 0;
42 m_Right = m_Top = 1.0f;
43 m_Matrix.TransformRect(m_Left, m_Right, m_Top, m_Bottom);
44 }
OLDNEW
« no previous file with comments | « core/fpdfapi/fpdf_page/cpdf_graphstate.h ('k') | core/fpdfapi/fpdf_page/cpdf_page.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698