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

Side by Side Diff: fpdfsdk/fpdfeditimg.cpp

Issue 2514263003: Make CPDF_ImageObject::m_Matrix private. (Closed)
Patch Set: nit Created 4 years 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/render/fpdf_render_image.cpp ('k') | no next file » | 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_edit.h" 7 #include "public/fpdf_edit.h"
8 8
9 #include "core/fpdfapi/cpdf_modulemgr.h" 9 #include "core/fpdfapi/cpdf_modulemgr.h"
10 #include "core/fpdfapi/page/cpdf_image.h" 10 #include "core/fpdfapi/page/cpdf_image.h"
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 double a, 48 double a,
49 double b, 49 double b,
50 double c, 50 double c,
51 double d, 51 double d,
52 double e, 52 double e,
53 double f) { 53 double f) {
54 if (!image_object) 54 if (!image_object)
55 return false; 55 return false;
56 56
57 CPDF_ImageObject* pImgObj = reinterpret_cast<CPDF_ImageObject*>(image_object); 57 CPDF_ImageObject* pImgObj = reinterpret_cast<CPDF_ImageObject*>(image_object);
58 pImgObj->m_Matrix.a = static_cast<FX_FLOAT>(a); 58 pImgObj->set_matrix(
59 pImgObj->m_Matrix.b = static_cast<FX_FLOAT>(b); 59 CFX_Matrix(static_cast<FX_FLOAT>(a), static_cast<FX_FLOAT>(b),
60 pImgObj->m_Matrix.c = static_cast<FX_FLOAT>(c); 60 static_cast<FX_FLOAT>(c), static_cast<FX_FLOAT>(d),
61 pImgObj->m_Matrix.d = static_cast<FX_FLOAT>(d); 61 static_cast<FX_FLOAT>(e), static_cast<FX_FLOAT>(f)));
62 pImgObj->m_Matrix.e = static_cast<FX_FLOAT>(e);
63 pImgObj->m_Matrix.f = static_cast<FX_FLOAT>(f);
64 pImgObj->CalcBoundingBox(); 62 pImgObj->CalcBoundingBox();
65 return true; 63 return true;
66 } 64 }
67 65
68 DLLEXPORT FPDF_BOOL STDCALL FPDFImageObj_SetBitmap(FPDF_PAGE* pages, 66 DLLEXPORT FPDF_BOOL STDCALL FPDFImageObj_SetBitmap(FPDF_PAGE* pages,
69 int nCount, 67 int nCount,
70 FPDF_PAGEOBJECT image_object, 68 FPDF_PAGEOBJECT image_object,
71 FPDF_BITMAP bitmap) { 69 FPDF_BITMAP bitmap) {
72 if (!image_object || !bitmap || !pages) 70 if (!image_object || !bitmap || !pages)
73 return false; 71 return false;
74 72
75 CPDF_ImageObject* pImgObj = reinterpret_cast<CPDF_ImageObject*>(image_object); 73 CPDF_ImageObject* pImgObj = reinterpret_cast<CPDF_ImageObject*>(image_object);
76 for (int index = 0; index < nCount; index++) { 74 for (int index = 0; index < nCount; index++) {
77 CPDF_Page* pPage = CPDFPageFromFPDFPage(pages[index]); 75 CPDF_Page* pPage = CPDFPageFromFPDFPage(pages[index]);
78 if (pPage) 76 if (pPage)
79 pImgObj->GetImage()->ResetCache(pPage, nullptr); 77 pImgObj->GetImage()->ResetCache(pPage, nullptr);
80 } 78 }
81 pImgObj->GetImage()->SetImage(reinterpret_cast<CFX_DIBitmap*>(bitmap), false); 79 pImgObj->GetImage()->SetImage(reinterpret_cast<CFX_DIBitmap*>(bitmap), false);
82 pImgObj->CalcBoundingBox(); 80 pImgObj->CalcBoundingBox();
83 return true; 81 return true;
84 } 82 }
OLDNEW
« no previous file with comments | « core/fpdfapi/render/fpdf_render_image.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698