OLD | NEW |
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 Loading... |
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 } |
OLD | NEW |