blob: cd4d5525f439ad8d223a0e77d0b2a5dfc47f39a6 [file] [log] [blame]
John Abd-El-Malek3f3b45c2014-05-23 17:28:10 -07001// 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 Zhanga6d9f0e2015-06-13 00:48:38 -07004
John Abd-El-Malek3f3b45c2014-05-23 17:28:10 -07005// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
6
Lei Zhangb4e7f302015-11-06 15:52:32 -08007#include "public/fpdf_edit.h"
8
dsinclair39c62fd2016-09-29 12:49:17 -07009#include "core/fpdfapi/cpdf_modulemgr.h"
dsinclair8a752ab2016-09-29 11:59:54 -070010#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"
dsinclair114e46a2016-09-29 17:18:21 -070013#include "fpdfsdk/fsdk_define.h"
tsepez36eb4bd2016-10-03 15:24:27 -070014#include "third_party/base/ptr_util.h"
John Abd-El-Malek3f3b45c2014-05-23 17:28:10 -070015
Nico Weber9d8ec5a2015-08-04 13:00:21 -070016DLLEXPORT FPDF_PAGEOBJECT STDCALL
17FPDFPageObj_NewImgeObj(FPDF_DOCUMENT document) {
Tom Sepez471a1032015-10-15 16:17:18 -070018 CPDF_Document* pDoc = CPDFDocumentFromFPDFDocument(document);
19 if (!pDoc)
20 return nullptr;
thestigc54bb432016-07-29 19:34:20 -070021
Tom Sepezae51c812015-08-05 12:34:06 -070022 CPDF_ImageObject* pImageObj = new CPDF_ImageObject;
tsepez36eb4bd2016-10-03 15:24:27 -070023 pImageObj->SetOwnedImage(pdfium::MakeUnique<CPDF_Image>(pDoc));
Nico Weber9d8ec5a2015-08-04 13:00:21 -070024 return pImageObj;
John Abd-El-Malek3f3b45c2014-05-23 17:28:10 -070025}
26
Nico Weber9d8ec5a2015-08-04 13:00:21 -070027DLLEXPORT FPDF_BOOL STDCALL
28FPDFImageObj_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-Malek3f3b45c2014-05-23 17:28:10 -070034
Tom Sepezae51c812015-08-05 12:34:06 -070035 IFX_FileRead* pFile = new CPDF_CustomAccess(fileAccess);
thestigc54bb432016-07-29 19:34:20 -070036 CPDF_ImageObject* pImgObj = reinterpret_cast<CPDF_ImageObject*>(image_object);
Nico Weber9d8ec5a2015-08-04 13:00:21 -070037 for (int index = 0; index < nCount; index++) {
Tom Sepezdb0be962015-10-16 14:00:21 -070038 CPDF_Page* pPage = CPDFPageFromFPDFPage(pages[index]);
thestigc54bb432016-07-29 19:34:20 -070039 if (pPage)
thestigf41d9dc2016-08-05 22:34:58 -070040 pImgObj->GetImage()->ResetCache(pPage, nullptr);
Nico Weber9d8ec5a2015-08-04 13:00:21 -070041 }
thestigf41d9dc2016-08-05 22:34:58 -070042 pImgObj->GetImage()->SetJpegImage(pFile);
John Abd-El-Malek3f3b45c2014-05-23 17:28:10 -070043
Nico Weber9d8ec5a2015-08-04 13:00:21 -070044 return TRUE;
John Abd-El-Malek3f3b45c2014-05-23 17:28:10 -070045}
46
Nico Weber9d8ec5a2015-08-04 13:00:21 -070047DLLEXPORT 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;
thestigc54bb432016-07-29 19:34:20 -070056
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 Weber9d8ec5a2015-08-04 13:00:21 -070064 pImgObj->CalcBoundingBox();
65 return TRUE;
John Abd-El-Malek3f3b45c2014-05-23 17:28:10 -070066}
67
Nico Weber9d8ec5a2015-08-04 13:00:21 -070068DLLEXPORT 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;
thestigc54bb432016-07-29 19:34:20 -070074
75 CPDF_ImageObject* pImgObj = reinterpret_cast<CPDF_ImageObject*>(image_object);
Nico Weber9d8ec5a2015-08-04 13:00:21 -070076 for (int index = 0; index < nCount; index++) {
Tom Sepezdb0be962015-10-16 14:00:21 -070077 CPDF_Page* pPage = CPDFPageFromFPDFPage(pages[index]);
thestigc54bb432016-07-29 19:34:20 -070078 if (pPage)
thestigf41d9dc2016-08-05 22:34:58 -070079 pImgObj->GetImage()->ResetCache(pPage, nullptr);
Nico Weber9d8ec5a2015-08-04 13:00:21 -070080 }
thestigf41d9dc2016-08-05 22:34:58 -070081 pImgObj->GetImage()->SetImage(reinterpret_cast<CFX_DIBitmap*>(bitmap), FALSE);
Nico Weber9d8ec5a2015-08-04 13:00:21 -070082 pImgObj->CalcBoundingBox();
83 return TRUE;
John Abd-El-Malek3f3b45c2014-05-23 17:28:10 -070084}