John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 1 | // Copyright 2014 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. |
Lei Zhang | a6d9f0e | 2015-06-13 00:48:38 -0700 | [diff] [blame] | 4 | |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 5 | // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com |
| 6 | |
Lei Zhang | b4e7f30 | 2015-11-06 15:52:32 -0800 | [diff] [blame] | 7 | #include "public/fpdf_edit.h" |
| 8 | |
dsinclair | 39c62fd | 2016-09-29 12:49:17 -0700 | [diff] [blame] | 9 | #include "core/fpdfapi/cpdf_modulemgr.h" |
dsinclair | 8a752ab | 2016-09-29 11:59:54 -0700 | [diff] [blame] | 10 | #include "core/fpdfapi/fpdf_page/cpdf_image.h" |
| 11 | #include "core/fpdfapi/fpdf_page/cpdf_imageobject.h" |
| 12 | #include "core/fpdfapi/fpdf_page/cpdf_pageobject.h" |
dsinclair | 114e46a | 2016-09-29 17:18:21 -0700 | [diff] [blame] | 13 | #include "fpdfsdk/fsdk_define.h" |
tsepez | 36eb4bd | 2016-10-03 15:24:27 -0700 | [diff] [blame^] | 14 | #include "third_party/base/ptr_util.h" |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 15 | |
Nico Weber | 9d8ec5a | 2015-08-04 13:00:21 -0700 | [diff] [blame] | 16 | DLLEXPORT FPDF_PAGEOBJECT STDCALL |
| 17 | FPDFPageObj_NewImgeObj(FPDF_DOCUMENT document) { |
Tom Sepez | 471a103 | 2015-10-15 16:17:18 -0700 | [diff] [blame] | 18 | CPDF_Document* pDoc = CPDFDocumentFromFPDFDocument(document); |
| 19 | if (!pDoc) |
| 20 | return nullptr; |
thestig | c54bb43 | 2016-07-29 19:34:20 -0700 | [diff] [blame] | 21 | |
Tom Sepez | ae51c81 | 2015-08-05 12:34:06 -0700 | [diff] [blame] | 22 | CPDF_ImageObject* pImageObj = new CPDF_ImageObject; |
tsepez | 36eb4bd | 2016-10-03 15:24:27 -0700 | [diff] [blame^] | 23 | pImageObj->SetOwnedImage(pdfium::MakeUnique<CPDF_Image>(pDoc)); |
Nico Weber | 9d8ec5a | 2015-08-04 13:00:21 -0700 | [diff] [blame] | 24 | return pImageObj; |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 25 | } |
| 26 | |
Nico Weber | 9d8ec5a | 2015-08-04 13:00:21 -0700 | [diff] [blame] | 27 | DLLEXPORT FPDF_BOOL STDCALL |
| 28 | FPDFImageObj_LoadJpegFile(FPDF_PAGE* pages, |
| 29 | int nCount, |
| 30 | FPDF_PAGEOBJECT image_object, |
| 31 | FPDF_FILEACCESS* fileAccess) { |
| 32 | if (!image_object || !fileAccess || !pages) |
| 33 | return FALSE; |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 34 | |
Tom Sepez | ae51c81 | 2015-08-05 12:34:06 -0700 | [diff] [blame] | 35 | IFX_FileRead* pFile = new CPDF_CustomAccess(fileAccess); |
thestig | c54bb43 | 2016-07-29 19:34:20 -0700 | [diff] [blame] | 36 | CPDF_ImageObject* pImgObj = reinterpret_cast<CPDF_ImageObject*>(image_object); |
Nico Weber | 9d8ec5a | 2015-08-04 13:00:21 -0700 | [diff] [blame] | 37 | for (int index = 0; index < nCount; index++) { |
Tom Sepez | db0be96 | 2015-10-16 14:00:21 -0700 | [diff] [blame] | 38 | CPDF_Page* pPage = CPDFPageFromFPDFPage(pages[index]); |
thestig | c54bb43 | 2016-07-29 19:34:20 -0700 | [diff] [blame] | 39 | if (pPage) |
thestig | f41d9dc | 2016-08-05 22:34:58 -0700 | [diff] [blame] | 40 | pImgObj->GetImage()->ResetCache(pPage, nullptr); |
Nico Weber | 9d8ec5a | 2015-08-04 13:00:21 -0700 | [diff] [blame] | 41 | } |
thestig | f41d9dc | 2016-08-05 22:34:58 -0700 | [diff] [blame] | 42 | pImgObj->GetImage()->SetJpegImage(pFile); |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 43 | |
Nico Weber | 9d8ec5a | 2015-08-04 13:00:21 -0700 | [diff] [blame] | 44 | return TRUE; |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 45 | } |
| 46 | |
Nico Weber | 9d8ec5a | 2015-08-04 13:00:21 -0700 | [diff] [blame] | 47 | DLLEXPORT FPDF_BOOL STDCALL FPDFImageObj_SetMatrix(FPDF_PAGEOBJECT image_object, |
| 48 | double a, |
| 49 | double b, |
| 50 | double c, |
| 51 | double d, |
| 52 | double e, |
| 53 | double f) { |
| 54 | if (!image_object) |
| 55 | return FALSE; |
thestig | c54bb43 | 2016-07-29 19:34:20 -0700 | [diff] [blame] | 56 | |
| 57 | CPDF_ImageObject* pImgObj = reinterpret_cast<CPDF_ImageObject*>(image_object); |
| 58 | pImgObj->m_Matrix.a = static_cast<FX_FLOAT>(a); |
| 59 | pImgObj->m_Matrix.b = static_cast<FX_FLOAT>(b); |
| 60 | pImgObj->m_Matrix.c = static_cast<FX_FLOAT>(c); |
| 61 | pImgObj->m_Matrix.d = static_cast<FX_FLOAT>(d); |
| 62 | pImgObj->m_Matrix.e = static_cast<FX_FLOAT>(e); |
| 63 | pImgObj->m_Matrix.f = static_cast<FX_FLOAT>(f); |
Nico Weber | 9d8ec5a | 2015-08-04 13:00:21 -0700 | [diff] [blame] | 64 | pImgObj->CalcBoundingBox(); |
| 65 | return TRUE; |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 66 | } |
| 67 | |
Nico Weber | 9d8ec5a | 2015-08-04 13:00:21 -0700 | [diff] [blame] | 68 | DLLEXPORT FPDF_BOOL STDCALL FPDFImageObj_SetBitmap(FPDF_PAGE* pages, |
| 69 | int nCount, |
| 70 | FPDF_PAGEOBJECT image_object, |
| 71 | FPDF_BITMAP bitmap) { |
| 72 | if (!image_object || !bitmap || !pages) |
| 73 | return FALSE; |
thestig | c54bb43 | 2016-07-29 19:34:20 -0700 | [diff] [blame] | 74 | |
| 75 | CPDF_ImageObject* pImgObj = reinterpret_cast<CPDF_ImageObject*>(image_object); |
Nico Weber | 9d8ec5a | 2015-08-04 13:00:21 -0700 | [diff] [blame] | 76 | for (int index = 0; index < nCount; index++) { |
Tom Sepez | db0be96 | 2015-10-16 14:00:21 -0700 | [diff] [blame] | 77 | CPDF_Page* pPage = CPDFPageFromFPDFPage(pages[index]); |
thestig | c54bb43 | 2016-07-29 19:34:20 -0700 | [diff] [blame] | 78 | if (pPage) |
thestig | f41d9dc | 2016-08-05 22:34:58 -0700 | [diff] [blame] | 79 | pImgObj->GetImage()->ResetCache(pPage, nullptr); |
Nico Weber | 9d8ec5a | 2015-08-04 13:00:21 -0700 | [diff] [blame] | 80 | } |
thestig | f41d9dc | 2016-08-05 22:34:58 -0700 | [diff] [blame] | 81 | pImgObj->GetImage()->SetImage(reinterpret_cast<CFX_DIBitmap*>(bitmap), FALSE); |
Nico Weber | 9d8ec5a | 2015-08-04 13:00:21 -0700 | [diff] [blame] | 82 | pImgObj->CalcBoundingBox(); |
| 83 | return TRUE; |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 84 | } |