blob: c189f2314c6685f60608a7593ec291ac2d09733d [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
dan sinclair61b2fc72016-03-23 19:21:44 -04009#include "core/fpdfapi/fpdf_page/include/cpdf_image.h"
Dan Sinclair584b1e62016-03-21 09:15:45 -040010#include "core/fpdfapi/fpdf_page/include/cpdf_imageobject.h"
11#include "core/fpdfapi/fpdf_page/include/cpdf_pageobject.h"
Dan Sinclairaa403d32016-03-15 14:57:22 -040012#include "core/fpdfapi/include/cpdf_modulemgr.h"
Lei Zhangbde53d22015-11-12 22:21:30 -080013#include "fpdfsdk/include/fsdk_define.h"
John Abd-El-Malek3f3b45c2014-05-23 17:28:10 -070014
Nico Weber9d8ec5a2015-08-04 13:00:21 -070015DLLEXPORT FPDF_PAGEOBJECT STDCALL
16FPDFPageObj_NewImgeObj(FPDF_DOCUMENT document) {
Tom Sepez471a1032015-10-15 16:17:18 -070017 CPDF_Document* pDoc = CPDFDocumentFromFPDFDocument(document);
18 if (!pDoc)
19 return nullptr;
Tom Sepezae51c812015-08-05 12:34:06 -070020 CPDF_ImageObject* pImageObj = new CPDF_ImageObject;
Tom Sepez471a1032015-10-15 16:17:18 -070021 CPDF_Image* pImg = new CPDF_Image(pDoc);
Nico Weber9d8ec5a2015-08-04 13:00:21 -070022 pImageObj->m_pImage = pImg;
23 return pImageObj;
John Abd-El-Malek3f3b45c2014-05-23 17:28:10 -070024}
25
Nico Weber9d8ec5a2015-08-04 13:00:21 -070026DLLEXPORT FPDF_BOOL STDCALL
27FPDFImageObj_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-Malek3f3b45c2014-05-23 17:28:10 -070033
Tom Sepezae51c812015-08-05 12:34:06 -070034 IFX_FileRead* pFile = new CPDF_CustomAccess(fileAccess);
Nico Weber9d8ec5a2015-08-04 13:00:21 -070035 CPDF_ImageObject* pImgObj = (CPDF_ImageObject*)image_object;
36 pImgObj->m_GeneralState.GetModify();
37 for (int index = 0; index < nCount; index++) {
Tom Sepezdb0be962015-10-16 14:00:21 -070038 CPDF_Page* pPage = CPDFPageFromFPDFPage(pages[index]);
Nico Weber9d8ec5a2015-08-04 13:00:21 -070039 if (!pPage)
40 continue;
41 pImgObj->m_pImage->ResetCache(pPage, NULL);
42 }
43 pImgObj->m_pImage->SetJpegImage(pFile);
John Abd-El-Malek3f3b45c2014-05-23 17:28:10 -070044
Nico Weber9d8ec5a2015-08-04 13:00:21 -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)
56 return FALSE;
57 CPDF_ImageObject* pImgObj = (CPDF_ImageObject*)image_object;
58 pImgObj->m_Matrix.a = (FX_FLOAT)a;
59 pImgObj->m_Matrix.b = (FX_FLOAT)b;
60 pImgObj->m_Matrix.c = (FX_FLOAT)c;
61 pImgObj->m_Matrix.d = (FX_FLOAT)d;
62 pImgObj->m_Matrix.e = (FX_FLOAT)e;
63 pImgObj->m_Matrix.f = (FX_FLOAT)f;
64 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;
74 CFX_DIBitmap* pBmp = NULL;
75 pBmp = (CFX_DIBitmap*)bitmap;
76 CPDF_ImageObject* pImgObj = (CPDF_ImageObject*)image_object;
77 pImgObj->m_GeneralState.GetModify();
78 for (int index = 0; index < nCount; index++) {
Tom Sepezdb0be962015-10-16 14:00:21 -070079 CPDF_Page* pPage = CPDFPageFromFPDFPage(pages[index]);
Nico Weber9d8ec5a2015-08-04 13:00:21 -070080 if (!pPage)
81 continue;
82 pImgObj->m_pImage->ResetCache(pPage, NULL);
83 }
84 pImgObj->m_pImage->SetImage(pBmp, FALSE);
85 pImgObj->CalcBoundingBox();
86 return TRUE;
John Abd-El-Malek3f3b45c2014-05-23 17:28:10 -070087}