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

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

Issue 1265503005: clang-format all pdfium code. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: sigh Created 5 years, 4 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
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 #include "../include/fsdk_define.h" 8 #include "../include/fsdk_define.h"
9 9
10 10 DLLEXPORT FPDF_PAGEOBJECT STDCALL
11 DLLEXPORT FPDF_PAGEOBJECT STDCALL FPDFPageObj_NewImgeObj(FPDF_DOCUMENT document) 11 FPDFPageObj_NewImgeObj(FPDF_DOCUMENT document) {
12 { 12 if (!document)
13 » if (!document) 13 return NULL;
14 » » return NULL; 14 CPDF_ImageObject* pImageObj = new CPDF_ImageObject;
15 » CPDF_ImageObject* pImageObj = new CPDF_ImageObject; 15 CPDF_Image* pImg = new CPDF_Image((CPDF_Document*)document);
16 » CPDF_Image* pImg = new CPDF_Image((CPDF_Document *)document); 16 pImageObj->m_pImage = pImg;
17 » pImageObj->m_pImage = pImg; 17 return pImageObj;
18 » return pImageObj;
19 } 18 }
20 19
21 DLLEXPORT FPDF_BOOL STDCALL FPDFImageObj_LoadJpegFile(FPDF_PAGE* pages, int nCou nt,FPDF_PAGEOBJECT image_object, FPDF_FILEACCESS* fileAccess) 20 DLLEXPORT FPDF_BOOL STDCALL
22 { 21 FPDFImageObj_LoadJpegFile(FPDF_PAGE* pages,
23 » if (!image_object || !fileAccess) 22 int nCount,
24 » » return FALSE; 23 FPDF_PAGEOBJECT image_object,
24 FPDF_FILEACCESS* fileAccess) {
25 if (!image_object || !fileAccess)
26 return FALSE;
25 27
26 » IFX_FileRead* pFile = new CPDF_CustomAccess(fileAccess); 28 IFX_FileRead* pFile = new CPDF_CustomAccess(fileAccess);
27 » CPDF_ImageObject* pImgObj = (CPDF_ImageObject*)image_object; 29 CPDF_ImageObject* pImgObj = (CPDF_ImageObject*)image_object;
28 » pImgObj->m_GeneralState.GetModify(); 30 pImgObj->m_GeneralState.GetModify();
29 » for (int index=0;index<nCount;index++) 31 for (int index = 0; index < nCount; index++) {
30 » { 32 CPDF_Page* pPage = (CPDF_Page*)pages[index];
31 » » CPDF_Page* pPage = (CPDF_Page*)pages[index]; 33 pImgObj->m_pImage->ResetCache(pPage, NULL);
32 » » pImgObj->m_pImage->ResetCache(pPage,NULL); 34 }
33 » } 35 pImgObj->m_pImage->SetJpegImage(pFile);
34 » pImgObj->m_pImage->SetJpegImage(pFile);
35 36
36 » return TRUE; 37 return TRUE;
37 } 38 }
38 39
39 40 DLLEXPORT FPDF_BOOL STDCALL FPDFImageObj_SetMatrix(FPDF_PAGEOBJECT image_object,
40 DLLEXPORT FPDF_BOOL STDCALL FPDFImageObj_SetMatrix» (FPDF_PAGEOBJECT image_o bject, 41 double a,
41 » » » » » » » » » » » » double a, double b, double c, double d, double e, double f) 42 double b,
42 { 43 double c,
43 » if (!image_object) 44 double d,
44 » » return FALSE; 45 double e,
45 » CPDF_ImageObject* pImgObj = (CPDF_ImageObject*)image_object; 46 double f) {
46 » pImgObj->m_Matrix.a = (FX_FLOAT)a; 47 if (!image_object)
47 » pImgObj->m_Matrix.b = (FX_FLOAT)b; 48 return FALSE;
48 » pImgObj->m_Matrix.c = (FX_FLOAT)c; 49 CPDF_ImageObject* pImgObj = (CPDF_ImageObject*)image_object;
49 » pImgObj->m_Matrix.d = (FX_FLOAT)d; 50 pImgObj->m_Matrix.a = (FX_FLOAT)a;
50 » pImgObj->m_Matrix.e = (FX_FLOAT)e; 51 pImgObj->m_Matrix.b = (FX_FLOAT)b;
51 » pImgObj->m_Matrix.f = (FX_FLOAT)f; 52 pImgObj->m_Matrix.c = (FX_FLOAT)c;
52 » pImgObj->CalcBoundingBox(); 53 pImgObj->m_Matrix.d = (FX_FLOAT)d;
53 » return TRUE; 54 pImgObj->m_Matrix.e = (FX_FLOAT)e;
55 pImgObj->m_Matrix.f = (FX_FLOAT)f;
56 pImgObj->CalcBoundingBox();
57 return TRUE;
54 } 58 }
55 59
56 DLLEXPORT FPDF_BOOL STDCALL FPDFImageObj_SetBitmap(FPDF_PAGE* pages,int nCount,F PDF_PAGEOBJECT image_object,FPDF_BITMAP bitmap) 60 DLLEXPORT FPDF_BOOL STDCALL FPDFImageObj_SetBitmap(FPDF_PAGE* pages,
57 { 61 int nCount,
58 » if (!image_object || !bitmap) 62 FPDF_PAGEOBJECT image_object,
59 » » return FALSE; 63 FPDF_BITMAP bitmap) {
60 » CFX_DIBitmap* pBmp = NULL; 64 if (!image_object || !bitmap)
61 » pBmp = (CFX_DIBitmap*)bitmap; 65 return FALSE;
62 » CPDF_ImageObject* pImgObj = (CPDF_ImageObject*)image_object; 66 CFX_DIBitmap* pBmp = NULL;
63 » pImgObj->m_GeneralState.GetModify(); 67 pBmp = (CFX_DIBitmap*)bitmap;
64 » for (int index=0;index<nCount;index++) 68 CPDF_ImageObject* pImgObj = (CPDF_ImageObject*)image_object;
65 » { 69 pImgObj->m_GeneralState.GetModify();
66 » » CPDF_Page* pPage = (CPDF_Page*)pages[index]; 70 for (int index = 0; index < nCount; index++) {
67 » » pImgObj->m_pImage->ResetCache(pPage,NULL); 71 CPDF_Page* pPage = (CPDF_Page*)pages[index];
68 » } 72 pImgObj->m_pImage->ResetCache(pPage, NULL);
69 » pImgObj->m_pImage->SetImage(pBmp,FALSE); 73 }
70 » pImgObj->CalcBoundingBox(); 74 pImgObj->m_pImage->SetImage(pBmp, FALSE);
71 » return TRUE; 75 pImgObj->CalcBoundingBox();
76 return TRUE;
72 } 77 }
73
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698