blob: acd53d3b07ae4846f6f4784b8dddc1deecc19d48 [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"
dsinclair41872fa2016-10-04 11:29:35 -070010#include "core/fpdfapi/page/cpdf_image.h"
11#include "core/fpdfapi/page/cpdf_imageobject.h"
12#include "core/fpdfapi/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)
tsepez4cf55152016-11-02 14:37:54 -070033 return false;
John Abd-El-Malek3f3b45c2014-05-23 17:28:10 -070034
tsepezad2441e2016-10-24 10:19:11 -070035 IFX_SeekableReadStream* 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
tsepez4cf55152016-11-02 14:37:54 -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)
tsepez4cf55152016-11-02 14:37:54 -070055 return false;
thestigc54bb432016-07-29 19:34:20 -070056
57 CPDF_ImageObject* pImgObj = reinterpret_cast<CPDF_ImageObject*>(image_object);
thestig8a5e15d2016-11-21 14:54:29 -080058 pImgObj->set_matrix(
59 CFX_Matrix(static_cast<FX_FLOAT>(a), static_cast<FX_FLOAT>(b),
60 static_cast<FX_FLOAT>(c), static_cast<FX_FLOAT>(d),
61 static_cast<FX_FLOAT>(e), static_cast<FX_FLOAT>(f)));
Nico Weber9d8ec5a2015-08-04 13:00:21 -070062 pImgObj->CalcBoundingBox();
tsepez4cf55152016-11-02 14:37:54 -070063 return true;
John Abd-El-Malek3f3b45c2014-05-23 17:28:10 -070064}
65
Nico Weber9d8ec5a2015-08-04 13:00:21 -070066DLLEXPORT FPDF_BOOL STDCALL FPDFImageObj_SetBitmap(FPDF_PAGE* pages,
67 int nCount,
68 FPDF_PAGEOBJECT image_object,
69 FPDF_BITMAP bitmap) {
70 if (!image_object || !bitmap || !pages)
tsepez4cf55152016-11-02 14:37:54 -070071 return false;
thestigc54bb432016-07-29 19:34:20 -070072
73 CPDF_ImageObject* pImgObj = reinterpret_cast<CPDF_ImageObject*>(image_object);
Nico Weber9d8ec5a2015-08-04 13:00:21 -070074 for (int index = 0; index < nCount; index++) {
Tom Sepezdb0be962015-10-16 14:00:21 -070075 CPDF_Page* pPage = CPDFPageFromFPDFPage(pages[index]);
thestigc54bb432016-07-29 19:34:20 -070076 if (pPage)
thestigf41d9dc2016-08-05 22:34:58 -070077 pImgObj->GetImage()->ResetCache(pPage, nullptr);
Nico Weber9d8ec5a2015-08-04 13:00:21 -070078 }
tsepez4cf55152016-11-02 14:37:54 -070079 pImgObj->GetImage()->SetImage(reinterpret_cast<CFX_DIBitmap*>(bitmap), false);
Nico Weber9d8ec5a2015-08-04 13:00:21 -070080 pImgObj->CalcBoundingBox();
tsepez4cf55152016-11-02 14:37:54 -070081 return true;
John Abd-El-Malek3f3b45c2014-05-23 17:28:10 -070082}