blob: 531a9abc8c9debe6157448cd7b5608dc2856e197 [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
tsepez833619b2016-12-07 09:21:17 -080035 CFX_RetainPtr<IFX_SeekableReadStream> pFile =
36 MakeSeekableReadStream(fileAccess);
thestigc54bb432016-07-29 19:34:20 -070037 CPDF_ImageObject* pImgObj = reinterpret_cast<CPDF_ImageObject*>(image_object);
Nico Weber9d8ec5a2015-08-04 13:00:21 -070038 for (int index = 0; index < nCount; index++) {
Tom Sepezdb0be962015-10-16 14:00:21 -070039 CPDF_Page* pPage = CPDFPageFromFPDFPage(pages[index]);
thestigc54bb432016-07-29 19:34:20 -070040 if (pPage)
thestigf41d9dc2016-08-05 22:34:58 -070041 pImgObj->GetImage()->ResetCache(pPage, nullptr);
Nico Weber9d8ec5a2015-08-04 13:00:21 -070042 }
thestigf41d9dc2016-08-05 22:34:58 -070043 pImgObj->GetImage()->SetJpegImage(pFile);
John Abd-El-Malek3f3b45c2014-05-23 17:28:10 -070044
tsepez4cf55152016-11-02 14:37:54 -070045 return true;
John Abd-El-Malek3f3b45c2014-05-23 17:28:10 -070046}
47
Nico Weber9d8ec5a2015-08-04 13:00:21 -070048DLLEXPORT FPDF_BOOL STDCALL FPDFImageObj_SetMatrix(FPDF_PAGEOBJECT image_object,
49 double a,
50 double b,
51 double c,
52 double d,
53 double e,
54 double f) {
55 if (!image_object)
tsepez4cf55152016-11-02 14:37:54 -070056 return false;
thestigc54bb432016-07-29 19:34:20 -070057
58 CPDF_ImageObject* pImgObj = reinterpret_cast<CPDF_ImageObject*>(image_object);
thestig8a5e15d2016-11-21 14:54:29 -080059 pImgObj->set_matrix(
60 CFX_Matrix(static_cast<FX_FLOAT>(a), static_cast<FX_FLOAT>(b),
61 static_cast<FX_FLOAT>(c), static_cast<FX_FLOAT>(d),
62 static_cast<FX_FLOAT>(e), static_cast<FX_FLOAT>(f)));
Nico Weber9d8ec5a2015-08-04 13:00:21 -070063 pImgObj->CalcBoundingBox();
tsepez4cf55152016-11-02 14:37:54 -070064 return true;
John Abd-El-Malek3f3b45c2014-05-23 17:28:10 -070065}
66
Nico Weber9d8ec5a2015-08-04 13:00:21 -070067DLLEXPORT 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)
tsepez4cf55152016-11-02 14:37:54 -070072 return false;
thestigc54bb432016-07-29 19:34:20 -070073
74 CPDF_ImageObject* pImgObj = reinterpret_cast<CPDF_ImageObject*>(image_object);
Nico Weber9d8ec5a2015-08-04 13:00:21 -070075 for (int index = 0; index < nCount; index++) {
Tom Sepezdb0be962015-10-16 14:00:21 -070076 CPDF_Page* pPage = CPDFPageFromFPDFPage(pages[index]);
thestigc54bb432016-07-29 19:34:20 -070077 if (pPage)
thestigf41d9dc2016-08-05 22:34:58 -070078 pImgObj->GetImage()->ResetCache(pPage, nullptr);
Nico Weber9d8ec5a2015-08-04 13:00:21 -070079 }
thestig4ccdb142016-11-21 15:09:23 -080080 pImgObj->GetImage()->SetImage(reinterpret_cast<CFX_DIBitmap*>(bitmap));
Nico Weber9d8ec5a2015-08-04 13:00:21 -070081 pImgObj->CalcBoundingBox();
tsepez4cf55152016-11-02 14:37:54 -070082 return true;
John Abd-El-Malek3f3b45c2014-05-23 17:28:10 -070083}