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