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

Side by Side Diff: fpdfsdk/src/fpdf_transformpage.cpp

Issue 1709393002: Remove PageObject's m_Type and add As<Type> functions (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: address comments Created 4 years, 10 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/src/fpdftext/fpdf_text_int.cpp ('k') | fpdfsdk/src/fpdfeditpage.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 PDFium Authors. All rights reserved. 1 // Copyright 2014 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 "public/fpdf_transformpage.h" 7 #include "public/fpdf_transformpage.h"
8 8
9 #include "fpdfsdk/include/fsdk_define.h" 9 #include "fpdfsdk/include/fsdk_define.h"
10 10
(...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after
193 double e, 193 double e,
194 double f) { 194 double f) {
195 CPDF_PageObject* pPageObj = (CPDF_PageObject*)page_object; 195 CPDF_PageObject* pPageObj = (CPDF_PageObject*)page_object;
196 if (!pPageObj) 196 if (!pPageObj)
197 return; 197 return;
198 CFX_Matrix matrix((FX_FLOAT)a, (FX_FLOAT)b, (FX_FLOAT)c, (FX_FLOAT)d, 198 CFX_Matrix matrix((FX_FLOAT)a, (FX_FLOAT)b, (FX_FLOAT)c, (FX_FLOAT)d,
199 (FX_FLOAT)e, (FX_FLOAT)f); 199 (FX_FLOAT)e, (FX_FLOAT)f);
200 200
201 // Special treatment to shading object, because the ClipPath for shading 201 // Special treatment to shading object, because the ClipPath for shading
202 // object is already transformed. 202 // object is already transformed.
203 if (pPageObj->m_Type != CPDF_PageObject::SHADING) 203 if (!pPageObj->IsShading())
204 pPageObj->TransformClipPath(matrix); 204 pPageObj->TransformClipPath(matrix);
205 pPageObj->TransformGeneralState(matrix); 205 pPageObj->TransformGeneralState(matrix);
206 } 206 }
207 207
208 DLLEXPORT FPDF_CLIPPATH STDCALL FPDF_CreateClipPath(float left, 208 DLLEXPORT FPDF_CLIPPATH STDCALL FPDF_CreateClipPath(float left,
209 float bottom, 209 float bottom,
210 float right, 210 float right,
211 float top) { 211 float top) {
212 CPDF_ClipPath* pNewClipPath = new CPDF_ClipPath(); 212 CPDF_ClipPath* pNewClipPath = new CPDF_ClipPath();
213 pNewClipPath->GetModify(); 213 pNewClipPath->GetModify();
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after
314 } else if (pDirectObj->IsStream()) { 314 } else if (pDirectObj->IsStream()) {
315 pContentArray = new CPDF_Array(); 315 pContentArray = new CPDF_Array();
316 pContentArray->AddReference(pDoc, pStream->GetObjNum()); 316 pContentArray->AddReference(pDoc, pStream->GetObjNum());
317 pContentArray->AddReference(pDoc, pDirectObj->GetObjNum()); 317 pContentArray->AddReference(pDoc, pDirectObj->GetObjNum());
318 pPageDic->SetAtReference("Contents", pDoc, 318 pPageDic->SetAtReference("Contents", pDoc,
319 pDoc->AddIndirectObject(pContentArray)); 319 pDoc->AddIndirectObject(pContentArray));
320 } 320 }
321 } 321 }
322 } 322 }
323 } 323 }
OLDNEW
« no previous file with comments | « core/src/fpdftext/fpdf_text_int.cpp ('k') | fpdfsdk/src/fpdfeditpage.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698