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