Line data Source code
1 : /******************************************************************************
2 : *
3 : * Project: PDF driver
4 : * Purpose: GDALDataset driver for PDF dataset.
5 : * Author: Even Rouault, <even dot rouault at spatialys.com>
6 : *
7 : ******************************************************************************
8 : *
9 : * Support for open-source PDFium library
10 : *
11 : * Copyright (C) 2015 Klokan Technologies GmbH (http://www.klokantech.com/)
12 : * Author: Martin Mikita <martin.mikita@klokantech.com>, xmikit00 @ FIT VUT Brno
13 : *
14 : ******************************************************************************
15 : * Copyright (c) 2010-2014, Even Rouault <even dot rouault at spatialys.com>
16 : *
17 : * SPDX-License-Identifier: MIT
18 : ****************************************************************************/
19 :
20 : #include "gdal_pdf.h"
21 :
22 : #include "cpl_vsi_virtual.h"
23 : #include "cpl_spawn.h"
24 : #include "cpl_string.h"
25 : #include "gdal_frmts.h"
26 : #include "ogr_spatialref.h"
27 : #include "ogr_geometry.h"
28 :
29 : #ifdef HAVE_POPPLER
30 : #include "cpl_multiproc.h"
31 : #include "pdfio.h"
32 : #endif // HAVE_POPPLER
33 :
34 : #include "pdfcreatecopy.h"
35 :
36 : #include "pdfdrivercore.h"
37 :
38 : #include <algorithm>
39 : #include <cassert>
40 : #include <limits>
41 : #include <set>
42 :
43 : #ifdef HAVE_PDFIUM
44 : // To be able to use
45 : // https://github.com/rouault/pdfium_build_gdal_3_5/releases/download/v1_pdfium_5106/install-win10-vs2019-x64-rev5106.zip
46 : // with newer Visual Studio versions.
47 : // Trick from https://github.com/conan-io/conan-center-index/issues/4826
48 : #if _MSC_VER >= 1932 // Visual Studio 2022 version 17.2+
49 : #pragma comment( \
50 : linker, \
51 : "/alternatename:__imp___std_init_once_complete=__imp_InitOnceComplete")
52 : #pragma comment( \
53 : linker, \
54 : "/alternatename:__imp___std_init_once_begin_initialize=__imp_InitOnceBeginInitialize")
55 : #endif
56 : #endif
57 :
58 : /* g++ -fPIC -g -Wall frmts/pdf/pdfdataset.cpp -shared -o gdal_PDF.so -Iport
59 : * -Igcore -Iogr -L. -lgdal -lpoppler -I/usr/include/poppler */
60 :
61 : #ifdef HAVE_PDF_READ_SUPPORT
62 :
63 : static double Get(GDALPDFObject *poObj, int nIndice = -1);
64 :
65 : #ifdef HAVE_POPPLER
66 :
67 : static CPLMutex *hGlobalParamsMutex = nullptr;
68 :
69 : /************************************************************************/
70 : /* GDALPDFOutputDev */
71 : /************************************************************************/
72 :
73 : class GDALPDFOutputDev : public SplashOutputDev
74 : {
75 : private:
76 : int bEnableVector;
77 : int bEnableText;
78 : int bEnableBitmap;
79 :
80 0 : void skipBytes(Stream *str, int width, int height, int nComps, int nBits)
81 : {
82 0 : int nVals = width * nComps;
83 0 : int nLineSize = (nVals * nBits + 7) >> 3;
84 0 : int nBytes = nLineSize * height;
85 0 : for (int i = 0; i < nBytes; i++)
86 : {
87 0 : if (str->getChar() == EOF)
88 0 : break;
89 : }
90 0 : }
91 :
92 : public:
93 51 : GDALPDFOutputDev(SplashColorMode colorModeA, int bitmapRowPadA,
94 : bool reverseVideoA, SplashColorPtr paperColorA)
95 51 : : SplashOutputDev(colorModeA, bitmapRowPadA, reverseVideoA,
96 : paperColorA),
97 51 : bEnableVector(TRUE), bEnableText(TRUE), bEnableBitmap(TRUE)
98 : {
99 51 : }
100 :
101 11 : void SetEnableVector(int bFlag)
102 : {
103 11 : bEnableVector = bFlag;
104 11 : }
105 :
106 11 : void SetEnableText(int bFlag)
107 : {
108 11 : bEnableText = bFlag;
109 11 : }
110 :
111 11 : void SetEnableBitmap(int bFlag)
112 : {
113 11 : bEnableBitmap = bFlag;
114 11 : }
115 :
116 51 : virtual void startPage(int pageNum, GfxState *state, XRef *xrefIn) override
117 : {
118 51 : SplashOutputDev::startPage(pageNum, state, xrefIn);
119 51 : SplashBitmap *poBitmap = getBitmap();
120 102 : memset(poBitmap->getDataPtr(), 255,
121 51 : static_cast<size_t>(poBitmap->getRowSize()) *
122 51 : poBitmap->getHeight());
123 51 : }
124 :
125 1673 : virtual void stroke(GfxState *state) override
126 : {
127 1673 : if (bEnableVector)
128 1664 : SplashOutputDev::stroke(state);
129 1673 : }
130 :
131 8 : virtual void fill(GfxState *state) override
132 : {
133 8 : if (bEnableVector)
134 8 : SplashOutputDev::fill(state);
135 8 : }
136 :
137 38 : virtual void eoFill(GfxState *state) override
138 : {
139 38 : if (bEnableVector)
140 32 : SplashOutputDev::eoFill(state);
141 38 : }
142 :
143 4295 : virtual void drawChar(GfxState *state, double x, double y, double dx,
144 : double dy, double originX, double originY,
145 : CharCode code, int nBytes, const Unicode *u,
146 : int uLen) override
147 : {
148 4295 : if (bEnableText)
149 4259 : SplashOutputDev::drawChar(state, x, y, dx, dy, originX, originY,
150 : code, nBytes, u, uLen);
151 4295 : }
152 :
153 681 : virtual void beginTextObject(GfxState *state) override
154 : {
155 681 : if (bEnableText)
156 678 : SplashOutputDev::beginTextObject(state);
157 681 : }
158 :
159 681 : virtual void endTextObject(GfxState *state) override
160 : {
161 681 : if (bEnableText)
162 678 : SplashOutputDev::endTextObject(state);
163 681 : }
164 :
165 0 : virtual void drawImageMask(GfxState *state, Object *ref, Stream *str,
166 : int width, int height, bool invert,
167 : bool interpolate, bool inlineImg) override
168 : {
169 0 : if (bEnableBitmap)
170 0 : SplashOutputDev::drawImageMask(state, ref, str, width, height,
171 : invert, interpolate, inlineImg);
172 : else
173 : {
174 0 : str->reset();
175 0 : if (inlineImg)
176 : {
177 0 : skipBytes(str, width, height, 1, 1);
178 : }
179 0 : str->close();
180 : }
181 0 : }
182 :
183 0 : virtual void setSoftMaskFromImageMask(GfxState *state, Object *ref,
184 : Stream *str, int width, int height,
185 : bool invert, bool inlineImg,
186 : double *baseMatrix) override
187 : {
188 0 : if (bEnableBitmap)
189 0 : SplashOutputDev::setSoftMaskFromImageMask(
190 : state, ref, str, width, height, invert, inlineImg, baseMatrix);
191 : else
192 0 : str->close();
193 0 : }
194 :
195 0 : virtual void unsetSoftMaskFromImageMask(GfxState *state,
196 : double *baseMatrix) override
197 : {
198 0 : if (bEnableBitmap)
199 0 : SplashOutputDev::unsetSoftMaskFromImageMask(state, baseMatrix);
200 0 : }
201 :
202 38 : virtual void drawImage(GfxState *state, Object *ref, Stream *str, int width,
203 : int height, GfxImageColorMap *colorMap,
204 : bool interpolate, const int *maskColors,
205 : bool inlineImg) override
206 : {
207 38 : if (bEnableBitmap)
208 35 : SplashOutputDev::drawImage(state, ref, str, width, height, colorMap,
209 : interpolate, maskColors, inlineImg);
210 : else
211 : {
212 3 : str->reset();
213 3 : if (inlineImg)
214 : {
215 0 : skipBytes(str, width, height, colorMap->getNumPixelComps(),
216 : colorMap->getBits());
217 : }
218 3 : str->close();
219 : }
220 38 : }
221 :
222 0 : virtual void drawMaskedImage(GfxState *state, Object *ref, Stream *str,
223 : int width, int height,
224 : GfxImageColorMap *colorMap, bool interpolate,
225 : Stream *maskStr, int maskWidth, int maskHeight,
226 : bool maskInvert, bool maskInterpolate) override
227 : {
228 0 : if (bEnableBitmap)
229 0 : SplashOutputDev::drawMaskedImage(
230 : state, ref, str, width, height, colorMap, interpolate, maskStr,
231 : maskWidth, maskHeight, maskInvert, maskInterpolate);
232 : else
233 0 : str->close();
234 0 : }
235 :
236 2 : virtual void drawSoftMaskedImage(GfxState *state, Object *ref, Stream *str,
237 : int width, int height,
238 : GfxImageColorMap *colorMap,
239 : bool interpolate, Stream *maskStr,
240 : int maskWidth, int maskHeight,
241 : GfxImageColorMap *maskColorMap,
242 : bool maskInterpolate) override
243 : {
244 2 : if (bEnableBitmap)
245 : {
246 2 : if (maskColorMap->getBits() <=
247 : 0) /* workaround poppler bug (robustness) */
248 : {
249 0 : str->close();
250 0 : return;
251 : }
252 2 : SplashOutputDev::drawSoftMaskedImage(
253 : state, ref, str, width, height, colorMap, interpolate, maskStr,
254 : maskWidth, maskHeight, maskColorMap, maskInterpolate);
255 : }
256 : else
257 0 : str->close();
258 : }
259 : };
260 :
261 : #endif // ~ HAVE_POPPLER
262 :
263 : /************************************************************************/
264 : /* Dump routines */
265 : /************************************************************************/
266 :
267 : class GDALPDFDumper
268 : {
269 : private:
270 : FILE *f = nullptr;
271 : const int nDepthLimit;
272 : std::set<int> aoSetObjectExplored{};
273 : const bool bDumpParent;
274 :
275 : void DumpSimplified(GDALPDFObject *poObj);
276 :
277 : CPL_DISALLOW_COPY_ASSIGN(GDALPDFDumper)
278 :
279 : public:
280 2 : GDALPDFDumper(const char *pszFilename, const char *pszDumpFile,
281 : int nDepthLimitIn = -1)
282 2 : : nDepthLimit(nDepthLimitIn),
283 2 : bDumpParent(CPLGetConfigOption("PDF_DUMP_PARENT", "FALSE"))
284 : {
285 2 : if (strcmp(pszDumpFile, "stderr") == 0)
286 0 : f = stderr;
287 2 : else if (EQUAL(pszDumpFile, "YES"))
288 0 : f = fopen(CPLSPrintf("dump_%s.txt", CPLGetFilename(pszFilename)),
289 : "wt");
290 : else
291 2 : f = fopen(pszDumpFile, "wt");
292 2 : if (f == nullptr)
293 0 : f = stderr;
294 2 : }
295 :
296 2 : ~GDALPDFDumper()
297 2 : {
298 2 : if (f != stderr)
299 2 : fclose(f);
300 2 : }
301 :
302 : void Dump(GDALPDFObject *poObj, int nDepth = 0);
303 : void Dump(GDALPDFDictionary *poDict, int nDepth = 0);
304 : void Dump(GDALPDFArray *poArray, int nDepth = 0);
305 : };
306 :
307 6 : void GDALPDFDumper::Dump(GDALPDFArray *poArray, int nDepth)
308 : {
309 6 : if (nDepthLimit >= 0 && nDepth > nDepthLimit)
310 0 : return;
311 :
312 6 : int nLength = poArray->GetLength();
313 : int i;
314 12 : CPLString osIndent;
315 28 : for (i = 0; i < nDepth; i++)
316 22 : osIndent += " ";
317 16 : for (i = 0; i < nLength; i++)
318 : {
319 10 : fprintf(f, "%sItem[%d]:", osIndent.c_str(), i);
320 10 : GDALPDFObject *poObj = nullptr;
321 10 : if ((poObj = poArray->Get(i)) != nullptr)
322 : {
323 10 : if (poObj->GetType() == PDFObjectType_String ||
324 10 : poObj->GetType() == PDFObjectType_Null ||
325 10 : poObj->GetType() == PDFObjectType_Bool ||
326 10 : poObj->GetType() == PDFObjectType_Int ||
327 22 : poObj->GetType() == PDFObjectType_Real ||
328 2 : poObj->GetType() == PDFObjectType_Name)
329 : {
330 8 : fprintf(f, " ");
331 8 : DumpSimplified(poObj);
332 8 : fprintf(f, "\n");
333 : }
334 : else
335 : {
336 2 : fprintf(f, "\n");
337 2 : Dump(poObj, nDepth + 1);
338 : }
339 : }
340 : }
341 : }
342 :
343 986 : void GDALPDFDumper::DumpSimplified(GDALPDFObject *poObj)
344 : {
345 986 : switch (poObj->GetType())
346 : {
347 0 : case PDFObjectType_String:
348 0 : fprintf(f, "%s (string)", poObj->GetString().c_str());
349 0 : break;
350 :
351 0 : case PDFObjectType_Null:
352 0 : fprintf(f, "null");
353 0 : break;
354 :
355 0 : case PDFObjectType_Bool:
356 0 : fprintf(f, "%s (bool)", poObj->GetBool() ? "true" : "false");
357 0 : break;
358 :
359 494 : case PDFObjectType_Int:
360 494 : fprintf(f, "%d (int)", poObj->GetInt());
361 494 : break;
362 :
363 0 : case PDFObjectType_Real:
364 0 : fprintf(f, "%f (real)", poObj->GetReal());
365 0 : break;
366 :
367 492 : case PDFObjectType_Name:
368 492 : fprintf(f, "%s (name)", poObj->GetName().c_str());
369 492 : break;
370 :
371 0 : default:
372 0 : fprintf(f, "unknown !");
373 0 : break;
374 : }
375 986 : }
376 :
377 140 : void GDALPDFDumper::Dump(GDALPDFObject *poObj, int nDepth)
378 : {
379 140 : if (nDepthLimit >= 0 && nDepth > nDepthLimit)
380 2 : return;
381 :
382 : int i;
383 140 : CPLString osIndent;
384 1032 : for (i = 0; i < nDepth; i++)
385 892 : osIndent += " ";
386 140 : fprintf(f, "%sType = %s", osIndent.c_str(), poObj->GetTypeName());
387 140 : int nRefNum = poObj->GetRefNum().toInt();
388 140 : if (nRefNum != 0)
389 132 : fprintf(f, ", Num = %d, Gen = %d", nRefNum, poObj->GetRefGen());
390 140 : fprintf(f, "\n");
391 :
392 140 : if (nRefNum != 0)
393 : {
394 132 : if (aoSetObjectExplored.find(nRefNum) != aoSetObjectExplored.end())
395 2 : return;
396 130 : aoSetObjectExplored.insert(nRefNum);
397 : }
398 :
399 138 : switch (poObj->GetType())
400 : {
401 6 : case PDFObjectType_Array:
402 6 : Dump(poObj->GetArray(), nDepth + 1);
403 6 : break;
404 :
405 132 : case PDFObjectType_Dictionary:
406 132 : Dump(poObj->GetDictionary(), nDepth + 1);
407 132 : break;
408 :
409 0 : case PDFObjectType_String:
410 : case PDFObjectType_Null:
411 : case PDFObjectType_Bool:
412 : case PDFObjectType_Int:
413 : case PDFObjectType_Real:
414 : case PDFObjectType_Name:
415 0 : fprintf(f, "%s", osIndent.c_str());
416 0 : DumpSimplified(poObj);
417 0 : fprintf(f, "\n");
418 0 : break;
419 :
420 0 : default:
421 0 : fprintf(f, "%s", osIndent.c_str());
422 0 : fprintf(f, "unknown !\n");
423 0 : break;
424 : }
425 :
426 138 : GDALPDFStream *poStream = poObj->GetStream();
427 138 : if (poStream != nullptr)
428 : {
429 122 : fprintf(f,
430 : "%sHas stream (" CPL_FRMT_GIB
431 : " uncompressed bytes, " CPL_FRMT_GIB " raw bytes)\n",
432 122 : osIndent.c_str(), static_cast<GIntBig>(poStream->GetLength()),
433 122 : static_cast<GIntBig>(poStream->GetRawLength()));
434 : }
435 : }
436 :
437 132 : void GDALPDFDumper::Dump(GDALPDFDictionary *poDict, int nDepth)
438 : {
439 132 : if (nDepthLimit >= 0 && nDepth > nDepthLimit)
440 0 : return;
441 :
442 264 : CPLString osIndent;
443 1128 : for (int i = 0; i < nDepth; i++)
444 996 : osIndent += " ";
445 132 : int i = 0;
446 132 : const auto &oMap = poDict->GetValues();
447 1246 : for (const auto &[osKey, poObj] : oMap)
448 : {
449 1114 : fprintf(f, "%sItem[%d] : %s", osIndent.c_str(), i, osKey.c_str());
450 1114 : ++i;
451 1114 : if (osKey == "Parent" && !bDumpParent)
452 : {
453 0 : if (poObj->GetRefNum().toBool())
454 0 : fprintf(f, ", Num = %d, Gen = %d", poObj->GetRefNum().toInt(),
455 0 : poObj->GetRefGen());
456 0 : fprintf(f, "\n");
457 0 : continue;
458 : }
459 1114 : if (poObj != nullptr)
460 : {
461 1114 : if (poObj->GetType() == PDFObjectType_String ||
462 1114 : poObj->GetType() == PDFObjectType_Null ||
463 1114 : poObj->GetType() == PDFObjectType_Bool ||
464 1114 : poObj->GetType() == PDFObjectType_Int ||
465 2856 : poObj->GetType() == PDFObjectType_Real ||
466 628 : poObj->GetType() == PDFObjectType_Name)
467 : {
468 978 : fprintf(f, " = ");
469 978 : DumpSimplified(poObj);
470 978 : fprintf(f, "\n");
471 : }
472 : else
473 : {
474 136 : fprintf(f, "\n");
475 136 : Dump(poObj, nDepth + 1);
476 : }
477 : }
478 : }
479 : }
480 :
481 : /************************************************************************/
482 : /* PDFRasterBand() */
483 : /************************************************************************/
484 :
485 1505 : PDFRasterBand::PDFRasterBand(PDFDataset *poDSIn, int nBandIn,
486 1505 : int nResolutionLevelIn)
487 1505 : : nResolutionLevel(nResolutionLevelIn)
488 : {
489 1505 : poDS = poDSIn;
490 1505 : nBand = nBandIn;
491 :
492 1505 : eDataType = GDT_Byte;
493 :
494 1505 : if (nResolutionLevel > 0)
495 : {
496 8 : nBlockXSize = 256;
497 8 : nBlockYSize = 256;
498 8 : poDSIn->SetMetadataItem("INTERLEAVE", "PIXEL", "IMAGE_STRUCTURE");
499 : }
500 1497 : else if (poDSIn->m_nBlockXSize)
501 : {
502 72 : nBlockXSize = poDSIn->m_nBlockXSize;
503 72 : nBlockYSize = poDSIn->m_nBlockYSize;
504 72 : poDSIn->SetMetadataItem("INTERLEAVE", "PIXEL", "IMAGE_STRUCTURE");
505 : }
506 1425 : else if (poDSIn->GetRasterXSize() <
507 1425 : 64 * 1024 * 1024 / poDSIn->GetRasterYSize())
508 : {
509 1421 : nBlockXSize = poDSIn->GetRasterXSize();
510 1421 : nBlockYSize = 1;
511 : }
512 : else
513 : {
514 4 : nBlockXSize = std::min(1024, poDSIn->GetRasterXSize());
515 4 : nBlockYSize = std::min(1024, poDSIn->GetRasterYSize());
516 4 : poDSIn->SetMetadataItem("INTERLEAVE", "PIXEL", "IMAGE_STRUCTURE");
517 : }
518 1505 : }
519 :
520 : /************************************************************************/
521 : /* InitOverviews() */
522 : /************************************************************************/
523 :
524 10 : void PDFDataset::InitOverviews()
525 : {
526 : #ifdef HAVE_PDFIUM
527 : // Only if used pdfium, make "arbitrary overviews"
528 : // Blocks are 256x256
529 14 : if (m_bUseLib.test(PDFLIB_PDFIUM) && m_apoOvrDS.empty() &&
530 4 : m_apoOvrDSBackup.empty())
531 : {
532 3 : int nXSize = nRasterXSize;
533 3 : int nYSize = nRasterYSize;
534 3 : constexpr int minSize = 256;
535 3 : int nDiscard = 1;
536 5 : while (nXSize > minSize || nYSize > minSize)
537 : {
538 2 : nXSize = (nXSize + 1) / 2;
539 2 : nYSize = (nYSize + 1) / 2;
540 :
541 2 : auto poOvrDS = std::make_unique<PDFDataset>(this, nXSize, nYSize);
542 :
543 10 : for (int i = 0; i < nBands; i++)
544 16 : poOvrDS->SetBand(
545 8 : i + 1, new PDFRasterBand(poOvrDS.get(), i + 1, nDiscard));
546 :
547 2 : m_apoOvrDS.emplace_back(std::move(poOvrDS));
548 2 : ++nDiscard;
549 : }
550 : }
551 : #endif
552 : #if defined(HAVE_POPPLER) || defined(HAVE_PODOFO)
553 16 : if (!m_bUseLib.test(PDFLIB_PDFIUM) && m_apoOvrDS.empty() &&
554 16 : m_apoOvrDSBackup.empty() && m_osUserPwd != "ASK_INTERACTIVE")
555 : {
556 1 : int nXSize = nRasterXSize;
557 1 : int nYSize = nRasterYSize;
558 1 : constexpr int minSize = 256;
559 1 : double dfDPI = m_dfDPI;
560 3 : while (nXSize > minSize || nYSize > minSize)
561 : {
562 2 : nXSize = (nXSize + 1) / 2;
563 2 : nYSize = (nYSize + 1) / 2;
564 2 : dfDPI /= 2;
565 :
566 2 : GDALOpenInfo oOpenInfo(GetDescription(), GA_ReadOnly);
567 2 : CPLStringList aosOpenOptions(CSLDuplicate(papszOpenOptions));
568 2 : aosOpenOptions.SetNameValue("DPI", CPLSPrintf("%g", dfDPI));
569 2 : aosOpenOptions.SetNameValue("BANDS", CPLSPrintf("%d", nBands));
570 2 : aosOpenOptions.SetNameValue("@OPEN_FOR_OVERVIEW", "YES");
571 2 : if (!m_osUserPwd.empty())
572 0 : aosOpenOptions.SetNameValue("USER_PWD", m_osUserPwd.c_str());
573 2 : oOpenInfo.papszOpenOptions = aosOpenOptions.List();
574 2 : auto poOvrDS = std::unique_ptr<PDFDataset>(Open(&oOpenInfo));
575 2 : if (!poOvrDS || poOvrDS->nBands != nBands)
576 0 : break;
577 2 : poOvrDS->m_bIsOvrDS = true;
578 2 : m_apoOvrDS.emplace_back(std::move(poOvrDS));
579 : }
580 : }
581 : #endif
582 10 : }
583 :
584 : /************************************************************************/
585 : /* GetColorInterpretation() */
586 : /************************************************************************/
587 :
588 60 : GDALColorInterp PDFRasterBand::GetColorInterpretation()
589 : {
590 60 : PDFDataset *poGDS = cpl::down_cast<PDFDataset *>(poDS);
591 60 : if (poGDS->nBands == 1)
592 0 : return GCI_GrayIndex;
593 : else
594 60 : return static_cast<GDALColorInterp>(GCI_RedBand + (nBand - 1));
595 : }
596 :
597 : /************************************************************************/
598 : /* GetOverviewCount() */
599 : /************************************************************************/
600 :
601 19 : int PDFRasterBand::GetOverviewCount()
602 : {
603 19 : PDFDataset *poGDS = cpl::down_cast<PDFDataset *>(poDS);
604 19 : if (poGDS->m_bIsOvrDS)
605 0 : return 0;
606 19 : if (GDALPamRasterBand::GetOverviewCount() > 0)
607 9 : return GDALPamRasterBand::GetOverviewCount();
608 : else
609 : {
610 10 : poGDS->InitOverviews();
611 10 : return static_cast<int>(poGDS->m_apoOvrDS.size());
612 : }
613 : }
614 :
615 : /************************************************************************/
616 : /* GetOverview() */
617 : /************************************************************************/
618 :
619 8 : GDALRasterBand *PDFRasterBand::GetOverview(int iOverviewIndex)
620 : {
621 8 : if (GDALPamRasterBand::GetOverviewCount() > 0)
622 2 : return GDALPamRasterBand::GetOverview(iOverviewIndex);
623 :
624 6 : else if (iOverviewIndex < 0 || iOverviewIndex >= GetOverviewCount())
625 4 : return nullptr;
626 : else
627 : {
628 2 : PDFDataset *poGDS = cpl::down_cast<PDFDataset *>(poDS);
629 2 : return poGDS->m_apoOvrDS[iOverviewIndex]->GetRasterBand(nBand);
630 : }
631 : }
632 :
633 : /************************************************************************/
634 : /* ~PDFRasterBand() */
635 : /************************************************************************/
636 :
637 3010 : PDFRasterBand::~PDFRasterBand()
638 : {
639 3010 : }
640 :
641 : /************************************************************************/
642 : /* IReadBlockFromTile() */
643 : /************************************************************************/
644 :
645 320 : CPLErr PDFRasterBand::IReadBlockFromTile(int nBlockXOff, int nBlockYOff,
646 : void *pImage)
647 :
648 : {
649 320 : PDFDataset *poGDS = cpl::down_cast<PDFDataset *>(poDS);
650 :
651 320 : int nReqXSize = nBlockXSize;
652 320 : int nReqYSize = nBlockYSize;
653 320 : if ((nBlockXOff + 1) * nBlockXSize > nRasterXSize)
654 40 : nReqXSize = nRasterXSize - nBlockXOff * nBlockXSize;
655 320 : if ((nBlockYOff + 1) * nBlockYSize > nRasterYSize)
656 48 : nReqYSize = nRasterYSize - nBlockYOff * nBlockYSize;
657 :
658 320 : int nXBlocks = DIV_ROUND_UP(nRasterXSize, nBlockXSize);
659 320 : int iTile = poGDS->m_aiTiles[nBlockYOff * nXBlocks + nBlockXOff];
660 320 : if (iTile < 0)
661 : {
662 0 : memset(pImage, 0, static_cast<size_t>(nBlockXSize) * nBlockYSize);
663 0 : return CE_None;
664 : }
665 :
666 320 : GDALPDFTileDesc &sTile = poGDS->m_asTiles[iTile];
667 320 : GDALPDFObject *poImage = sTile.poImage;
668 :
669 320 : if (nBand == 4)
670 : {
671 60 : GDALPDFDictionary *poImageDict = poImage->GetDictionary();
672 60 : GDALPDFObject *poSMask = poImageDict->Get("SMask");
673 120 : if (poSMask != nullptr &&
674 60 : poSMask->GetType() == PDFObjectType_Dictionary)
675 : {
676 60 : GDALPDFDictionary *poSMaskDict = poSMask->GetDictionary();
677 60 : GDALPDFObject *poWidth = poSMaskDict->Get("Width");
678 60 : GDALPDFObject *poHeight = poSMaskDict->Get("Height");
679 60 : GDALPDFObject *poColorSpace = poSMaskDict->Get("ColorSpace");
680 : GDALPDFObject *poBitsPerComponent =
681 60 : poSMaskDict->Get("BitsPerComponent");
682 60 : double dfBits = 0;
683 60 : if (poBitsPerComponent)
684 60 : dfBits = Get(poBitsPerComponent);
685 60 : if (poWidth && Get(poWidth) == nReqXSize && poHeight &&
686 60 : Get(poHeight) == nReqYSize && poColorSpace &&
687 120 : poColorSpace->GetType() == PDFObjectType_Name &&
688 224 : poColorSpace->GetName() == "DeviceGray" &&
689 44 : (dfBits == 1 || dfBits == 8))
690 : {
691 60 : GDALPDFStream *poStream = poSMask->GetStream();
692 60 : GByte *pabyStream = nullptr;
693 :
694 60 : if (poStream == nullptr)
695 0 : return CE_Failure;
696 :
697 60 : pabyStream = reinterpret_cast<GByte *>(poStream->GetBytes());
698 60 : if (pabyStream == nullptr)
699 0 : return CE_Failure;
700 :
701 60 : const int nReqXSize1 = (nReqXSize + 7) / 8;
702 104 : if ((dfBits == 8 &&
703 44 : static_cast<size_t>(poStream->GetLength()) !=
704 120 : static_cast<size_t>(nReqXSize) * nReqYSize) ||
705 16 : (dfBits == 1 &&
706 16 : static_cast<size_t>(poStream->GetLength()) !=
707 16 : static_cast<size_t>(nReqXSize1) * nReqYSize))
708 : {
709 0 : VSIFree(pabyStream);
710 0 : return CE_Failure;
711 : }
712 :
713 60 : GByte *pabyData = static_cast<GByte *>(pImage);
714 60 : if (nReqXSize != nBlockXSize || nReqYSize != nBlockYSize)
715 : {
716 20 : memset(pabyData, 0,
717 20 : static_cast<size_t>(nBlockXSize) * nBlockYSize);
718 : }
719 :
720 60 : if (dfBits == 8)
721 : {
722 1372 : for (int j = 0; j < nReqYSize; j++)
723 : {
724 43824 : for (int i = 0; i < nReqXSize; i++)
725 : {
726 42496 : pabyData[j * nBlockXSize + i] =
727 42496 : pabyStream[j * nReqXSize + i];
728 : }
729 : }
730 : }
731 : else
732 : {
733 488 : for (int j = 0; j < nReqYSize; j++)
734 : {
735 6576 : for (int i = 0; i < nReqXSize; i++)
736 : {
737 6104 : if (pabyStream[j * nReqXSize1 + i / 8] &
738 6104 : (1 << (7 - (i % 8))))
739 1792 : pabyData[j * nBlockXSize + i] = 255;
740 : else
741 4312 : pabyData[j * nBlockXSize + i] = 0;
742 : }
743 : }
744 : }
745 :
746 60 : VSIFree(pabyStream);
747 60 : return CE_None;
748 : }
749 : }
750 :
751 0 : memset(pImage, 255, static_cast<size_t>(nBlockXSize) * nBlockYSize);
752 0 : return CE_None;
753 : }
754 :
755 260 : if (poGDS->m_nLastBlockXOff == nBlockXOff &&
756 0 : poGDS->m_nLastBlockYOff == nBlockYOff &&
757 0 : poGDS->m_pabyCachedData != nullptr)
758 : {
759 : #ifdef DEBUG
760 0 : CPLDebug("PDF", "Using cached block (%d, %d)", nBlockXOff, nBlockYOff);
761 : #endif
762 : // do nothing
763 : }
764 : else
765 : {
766 260 : if (!poGDS->m_bTried)
767 : {
768 10 : poGDS->m_bTried = true;
769 10 : poGDS->m_pabyCachedData =
770 10 : static_cast<GByte *>(VSIMalloc3(3, nBlockXSize, nBlockYSize));
771 : }
772 260 : if (poGDS->m_pabyCachedData == nullptr)
773 0 : return CE_Failure;
774 :
775 260 : GDALPDFStream *poStream = poImage->GetStream();
776 260 : GByte *pabyStream = nullptr;
777 :
778 260 : if (poStream == nullptr)
779 0 : return CE_Failure;
780 :
781 260 : pabyStream = reinterpret_cast<GByte *>(poStream->GetBytes());
782 260 : if (pabyStream == nullptr)
783 0 : return CE_Failure;
784 :
785 260 : if (static_cast<size_t>(poStream->GetLength()) !=
786 260 : static_cast<size_t>(sTile.nBands) * nReqXSize * nReqYSize)
787 : {
788 0 : VSIFree(pabyStream);
789 0 : return CE_Failure;
790 : }
791 :
792 260 : memcpy(poGDS->m_pabyCachedData, pabyStream,
793 260 : static_cast<size_t>(poStream->GetLength()));
794 260 : VSIFree(pabyStream);
795 260 : poGDS->m_nLastBlockXOff = nBlockXOff;
796 260 : poGDS->m_nLastBlockYOff = nBlockYOff;
797 : }
798 :
799 260 : GByte *pabyData = static_cast<GByte *>(pImage);
800 260 : if (nBand != 4 && (nReqXSize != nBlockXSize || nReqYSize != nBlockYSize))
801 : {
802 60 : memset(pabyData, 0, static_cast<size_t>(nBlockXSize) * nBlockYSize);
803 : }
804 :
805 260 : if (poGDS->nBands >= 3 && sTile.nBands == 3)
806 : {
807 5580 : for (int j = 0; j < nReqYSize; j++)
808 : {
809 151200 : for (int i = 0; i < nReqXSize; i++)
810 : {
811 145800 : pabyData[j * nBlockXSize + i] =
812 : poGDS
813 145800 : ->m_pabyCachedData[3 * (j * nReqXSize + i) + nBand - 1];
814 : }
815 180 : }
816 : }
817 80 : else if (sTile.nBands == 1)
818 : {
819 12368 : for (int j = 0; j < nReqYSize; j++)
820 : {
821 2109440 : for (int i = 0; i < nReqXSize; i++)
822 : {
823 2097150 : pabyData[j * nBlockXSize + i] =
824 2097150 : poGDS->m_pabyCachedData[j * nReqXSize + i];
825 : }
826 : }
827 : }
828 :
829 260 : return CE_None;
830 : }
831 :
832 : /************************************************************************/
833 : /* GetSuggestedBlockAccessPattern() */
834 : /************************************************************************/
835 :
836 : GDALSuggestedBlockAccessPattern
837 2 : PDFRasterBand::GetSuggestedBlockAccessPattern() const
838 : {
839 2 : PDFDataset *poGDS = cpl::down_cast<PDFDataset *>(poDS);
840 2 : if (!poGDS->m_aiTiles.empty())
841 0 : return GSBAP_RANDOM;
842 2 : return GSBAP_LARGEST_CHUNK_POSSIBLE;
843 : }
844 :
845 : /************************************************************************/
846 : /* IReadBlock() */
847 : /************************************************************************/
848 :
849 50345 : CPLErr PDFRasterBand::IReadBlock(int nBlockXOff, int nBlockYOff, void *pImage)
850 :
851 : {
852 50345 : PDFDataset *poGDS = cpl::down_cast<PDFDataset *>(poDS);
853 :
854 50345 : if (!poGDS->m_aiTiles.empty())
855 : {
856 320 : if (IReadBlockFromTile(nBlockXOff, nBlockYOff, pImage) == CE_None)
857 : {
858 320 : return CE_None;
859 : }
860 : else
861 : {
862 0 : poGDS->m_aiTiles.resize(0);
863 0 : poGDS->m_bTried = false;
864 0 : CPLFree(poGDS->m_pabyCachedData);
865 0 : poGDS->m_pabyCachedData = nullptr;
866 0 : poGDS->m_nLastBlockXOff = -1;
867 0 : poGDS->m_nLastBlockYOff = -1;
868 : }
869 : }
870 :
871 50025 : int nReqXSize = nBlockXSize;
872 50025 : int nReqYSize = nBlockYSize;
873 50025 : if ((nBlockXOff + 1) * nBlockXSize > nRasterXSize)
874 0 : nReqXSize = nRasterXSize - nBlockXOff * nBlockXSize;
875 50025 : if (nBlockYSize == 1)
876 50020 : nReqYSize = nRasterYSize;
877 5 : else if ((nBlockYOff + 1) * nBlockYSize > nRasterYSize)
878 0 : nReqYSize = nRasterYSize - nBlockYOff * nBlockYSize;
879 :
880 50025 : if (!poGDS->m_bTried)
881 : {
882 110 : poGDS->m_bTried = true;
883 110 : if (nBlockYSize == 1)
884 324 : poGDS->m_pabyCachedData = static_cast<GByte *>(VSIMalloc3(
885 108 : std::max(3, poGDS->nBands), nRasterXSize, nRasterYSize));
886 : else
887 6 : poGDS->m_pabyCachedData = static_cast<GByte *>(VSIMalloc3(
888 2 : std::max(3, poGDS->nBands), nBlockXSize, nBlockYSize));
889 : }
890 50025 : if (poGDS->m_pabyCachedData == nullptr)
891 0 : return CE_Failure;
892 :
893 50025 : if (poGDS->m_nLastBlockXOff == nBlockXOff &&
894 49912 : (nBlockYSize == 1 || poGDS->m_nLastBlockYOff == nBlockYOff) &&
895 49912 : poGDS->m_pabyCachedData != nullptr)
896 : {
897 : /*CPLDebug("PDF", "Using cached block (%d, %d)",
898 : nBlockXOff, nBlockYOff);*/
899 : // do nothing
900 : }
901 : else
902 : {
903 : #ifdef HAVE_PODOFO
904 : if (poGDS->m_bUseLib.test(PDFLIB_PODOFO) && nBand == 4)
905 : {
906 : memset(pImage, 255, nBlockXSize * nBlockYSize);
907 : return CE_None;
908 : }
909 : #endif
910 :
911 113 : const int nReqXOff = nBlockXOff * nBlockXSize;
912 113 : const int nReqYOff = (nBlockYSize == 1) ? 0 : nBlockYOff * nBlockYSize;
913 113 : const GSpacing nPixelSpace = 1;
914 113 : const GSpacing nLineSpace = nBlockXSize;
915 113 : const GSpacing nBandSpace =
916 113 : static_cast<GSpacing>(nBlockXSize) *
917 113 : ((nBlockYSize == 1) ? nRasterYSize : nBlockYSize);
918 :
919 113 : CPLErr eErr = poGDS->ReadPixels(nReqXOff, nReqYOff, nReqXSize,
920 : nReqYSize, nPixelSpace, nLineSpace,
921 : nBandSpace, poGDS->m_pabyCachedData);
922 :
923 113 : if (eErr == CE_None)
924 : {
925 113 : poGDS->m_nLastBlockXOff = nBlockXOff;
926 113 : poGDS->m_nLastBlockYOff = nBlockYOff;
927 : }
928 : else
929 : {
930 0 : CPLFree(poGDS->m_pabyCachedData);
931 0 : poGDS->m_pabyCachedData = nullptr;
932 : }
933 : }
934 50025 : if (poGDS->m_pabyCachedData == nullptr)
935 0 : return CE_Failure;
936 :
937 50025 : if (nBlockYSize == 1)
938 50020 : memcpy(pImage,
939 50020 : poGDS->m_pabyCachedData +
940 50020 : (nBand - 1) * nBlockXSize * nRasterYSize +
941 50020 : nBlockYOff * nBlockXSize,
942 50020 : nBlockXSize);
943 : else
944 : {
945 5 : memcpy(pImage,
946 5 : poGDS->m_pabyCachedData +
947 5 : static_cast<size_t>(nBand - 1) * nBlockXSize * nBlockYSize,
948 5 : static_cast<size_t>(nBlockXSize) * nBlockYSize);
949 :
950 5 : if (poGDS->m_bCacheBlocksForOtherBands && nBand == 1)
951 : {
952 19 : for (int iBand = 2; iBand <= poGDS->nBands; ++iBand)
953 : {
954 28 : auto poOtherBand = cpl::down_cast<PDFRasterBand *>(
955 14 : poGDS->papoBands[iBand - 1]);
956 : GDALRasterBlock *poBlock =
957 14 : poOtherBand->TryGetLockedBlockRef(nBlockXOff, nBlockYOff);
958 14 : if (poBlock)
959 : {
960 0 : poBlock->DropLock();
961 : }
962 : else
963 : {
964 28 : poBlock = poOtherBand->GetLockedBlockRef(nBlockXOff,
965 14 : nBlockYOff, TRUE);
966 14 : if (poBlock)
967 : {
968 28 : memcpy(poBlock->GetDataRef(),
969 14 : poGDS->m_pabyCachedData +
970 14 : static_cast<size_t>(iBand - 1) *
971 14 : nBlockXSize * nBlockYSize,
972 14 : static_cast<size_t>(nBlockXSize) * nBlockYSize);
973 14 : poBlock->DropLock();
974 : }
975 : }
976 : }
977 : }
978 : }
979 :
980 50025 : return CE_None;
981 : }
982 :
983 : /************************************************************************/
984 : /* PDFEnterPasswordFromConsoleIfNeeded() */
985 : /************************************************************************/
986 :
987 6 : static const char *PDFEnterPasswordFromConsoleIfNeeded(const char *pszUserPwd)
988 : {
989 6 : if (EQUAL(pszUserPwd, "ASK_INTERACTIVE"))
990 : {
991 : static char szPassword[81];
992 4 : printf("Enter password (will be echo'ed in the console): "); /*ok*/
993 4 : if (nullptr == fgets(szPassword, sizeof(szPassword), stdin))
994 : {
995 0 : fprintf(stderr, "WARNING: Error getting password.\n"); /*ok*/
996 : }
997 4 : szPassword[sizeof(szPassword) - 1] = 0;
998 4 : char *sz10 = strchr(szPassword, '\n');
999 4 : if (sz10)
1000 0 : *sz10 = 0;
1001 4 : return szPassword;
1002 : }
1003 2 : return pszUserPwd;
1004 : }
1005 :
1006 : #ifdef HAVE_PDFIUM
1007 :
1008 : /************************************************************************/
1009 : /* Pdfium Load/Unload */
1010 : /* Copyright (C) 2015 Klokan Technologies GmbH (http://www.klokantech.com/) */
1011 : /* Author: Martin Mikita <martin.mikita@klokantech.com> */
1012 : /************************************************************************/
1013 :
1014 : // Flag for calling PDFium Init and Destroy methods
1015 : bool PDFDataset::g_bPdfiumInit = false;
1016 :
1017 : // Pdfium global read mutex - Pdfium is not multi-thread
1018 : static CPLMutex *g_oPdfiumReadMutex = nullptr;
1019 : static CPLMutex *g_oPdfiumLoadDocMutex = nullptr;
1020 :
1021 : // Comparison of char* for std::map
1022 : struct cmp_str
1023 : {
1024 481 : bool operator()(char const *a, char const *b) const
1025 : {
1026 481 : return strcmp(a, b) < 0;
1027 : }
1028 : };
1029 :
1030 5851 : static int GDALPdfiumGetBlock(void *param, unsigned long position,
1031 : unsigned char *pBuf, unsigned long size)
1032 : {
1033 5851 : VSILFILE *fp = static_cast<VSILFILE *>(param);
1034 5851 : VSIFSeekL(fp, position, SEEK_SET);
1035 5851 : return VSIFReadL(pBuf, size, 1, fp) == 1;
1036 : }
1037 :
1038 : // List of all PDF datasets
1039 : typedef std::map<const char *, TPdfiumDocumentStruct *, cmp_str>
1040 : TMapPdfiumDatasets;
1041 : static TMapPdfiumDatasets g_mPdfiumDatasets;
1042 :
1043 : /**
1044 : * Loading PDFIUM page
1045 : * - multithreading requires "mutex"
1046 : * - one page can require too much RAM
1047 : * - we will have one document per filename and one object per page
1048 : */
1049 :
1050 245 : static int LoadPdfiumDocumentPage(const char *pszFilename,
1051 : const char *pszUserPwd, int pageNum,
1052 : TPdfiumDocumentStruct **doc,
1053 : TPdfiumPageStruct **page, int *pnPageCount)
1054 : {
1055 : // Prepare nullptr for error returning
1056 245 : if (doc)
1057 245 : *doc = nullptr;
1058 245 : if (page)
1059 245 : *page = nullptr;
1060 245 : if (pnPageCount)
1061 245 : *pnPageCount = 0;
1062 :
1063 : // Loading document and page must be only in one thread!
1064 245 : CPLCreateOrAcquireMutex(&g_oPdfiumLoadDocMutex, PDFIUM_MUTEX_TIMEOUT);
1065 :
1066 : // Library can be destroyed if every PDF dataset was closed!
1067 245 : if (!PDFDataset::g_bPdfiumInit)
1068 : {
1069 221 : FPDF_InitLibrary();
1070 221 : PDFDataset::g_bPdfiumInit = TRUE;
1071 : }
1072 :
1073 245 : TMapPdfiumDatasets::iterator it;
1074 245 : it = g_mPdfiumDatasets.find(pszFilename);
1075 245 : TPdfiumDocumentStruct *poDoc = nullptr;
1076 : // Load new document if missing
1077 245 : if (it == g_mPdfiumDatasets.end())
1078 : {
1079 : // Try without password (if PDF not requires password it can fail)
1080 :
1081 235 : VSILFILE *fp = VSIFOpenL(pszFilename, "rb");
1082 235 : if (fp == nullptr)
1083 : {
1084 1 : CPLReleaseMutex(g_oPdfiumLoadDocMutex);
1085 1 : return FALSE;
1086 : }
1087 234 : VSIFSeekL(fp, 0, SEEK_END);
1088 234 : const auto nFileLen64 = VSIFTellL(fp);
1089 : if constexpr (LONG_MAX < std::numeric_limits<vsi_l_offset>::max())
1090 : {
1091 234 : if (nFileLen64 > LONG_MAX)
1092 : {
1093 0 : VSIFCloseL(fp);
1094 0 : CPLReleaseMutex(g_oPdfiumLoadDocMutex);
1095 0 : return FALSE;
1096 : }
1097 : }
1098 :
1099 234 : FPDF_FILEACCESS *psFileAccess = new FPDF_FILEACCESS;
1100 234 : psFileAccess->m_Param = fp;
1101 234 : psFileAccess->m_FileLen = static_cast<unsigned long>(nFileLen64);
1102 234 : psFileAccess->m_GetBlock = GDALPdfiumGetBlock;
1103 234 : CPDF_Document *docPdfium = CPDFDocumentFromFPDFDocument(
1104 : FPDF_LoadCustomDocument(psFileAccess, nullptr));
1105 234 : if (docPdfium == nullptr)
1106 : {
1107 15 : unsigned long err = FPDF_GetLastError();
1108 15 : if (err == FPDF_ERR_PASSWORD)
1109 : {
1110 7 : if (pszUserPwd)
1111 : {
1112 : pszUserPwd =
1113 6 : PDFEnterPasswordFromConsoleIfNeeded(pszUserPwd);
1114 6 : docPdfium = CPDFDocumentFromFPDFDocument(
1115 : FPDF_LoadCustomDocument(psFileAccess, pszUserPwd));
1116 6 : if (docPdfium == nullptr)
1117 3 : err = FPDF_GetLastError();
1118 : else
1119 3 : err = FPDF_ERR_SUCCESS;
1120 : }
1121 : else
1122 : {
1123 1 : CPLError(CE_Failure, CPLE_AppDefined,
1124 : "A password is needed. You can specify it through "
1125 : "the PDF_USER_PWD "
1126 : "configuration option / USER_PWD open option "
1127 : "(that can be set to ASK_INTERACTIVE)");
1128 :
1129 1 : VSIFCloseL(fp);
1130 1 : delete psFileAccess;
1131 1 : CPLReleaseMutex(g_oPdfiumLoadDocMutex);
1132 1 : return FALSE;
1133 : }
1134 : } // First Error Password [null password given]
1135 14 : if (err != FPDF_ERR_SUCCESS)
1136 : {
1137 11 : if (err == FPDF_ERR_PASSWORD)
1138 3 : CPLError(CE_Failure, CPLE_AppDefined,
1139 : "PDFium Invalid password.");
1140 8 : else if (err == FPDF_ERR_SECURITY)
1141 0 : CPLError(CE_Failure, CPLE_AppDefined,
1142 : "PDFium Unsupported security scheme.");
1143 8 : else if (err == FPDF_ERR_FORMAT)
1144 8 : CPLError(CE_Failure, CPLE_AppDefined,
1145 : "PDFium File not in PDF format or corrupted.");
1146 0 : else if (err == FPDF_ERR_FILE)
1147 0 : CPLError(CE_Failure, CPLE_AppDefined,
1148 : "PDFium File not found or could not be opened.");
1149 : else
1150 0 : CPLError(CE_Failure, CPLE_AppDefined,
1151 : "PDFium Unknown PDF error or invalid PDF.");
1152 :
1153 11 : VSIFCloseL(fp);
1154 11 : delete psFileAccess;
1155 11 : CPLReleaseMutex(g_oPdfiumLoadDocMutex);
1156 11 : return FALSE;
1157 : }
1158 : } // ~ wrong PDF or password required
1159 :
1160 : // Create new poDoc
1161 222 : poDoc = new TPdfiumDocumentStruct;
1162 222 : if (!poDoc)
1163 : {
1164 0 : CPLError(CE_Failure, CPLE_AppDefined,
1165 : "Not enough memory for Pdfium Document object");
1166 :
1167 0 : VSIFCloseL(fp);
1168 0 : delete psFileAccess;
1169 0 : CPLReleaseMutex(g_oPdfiumLoadDocMutex);
1170 0 : return FALSE;
1171 : }
1172 222 : poDoc->filename = CPLStrdup(pszFilename);
1173 222 : poDoc->doc = docPdfium;
1174 222 : poDoc->psFileAccess = psFileAccess;
1175 :
1176 222 : g_mPdfiumDatasets[poDoc->filename] = poDoc;
1177 : }
1178 : // Document already loaded
1179 : else
1180 : {
1181 10 : poDoc = it->second;
1182 : }
1183 :
1184 : // Check page num in document
1185 232 : int nPages = poDoc->doc->GetPageCount();
1186 232 : if (pageNum < 1 || pageNum > nPages)
1187 : {
1188 1 : CPLError(CE_Failure, CPLE_AppDefined,
1189 : "PDFium Invalid page number (%d/%d) for document %s", pageNum,
1190 : nPages, pszFilename);
1191 :
1192 1 : CPLReleaseMutex(g_oPdfiumLoadDocMutex);
1193 1 : return FALSE;
1194 : }
1195 :
1196 : /* Sanity check to validate page count */
1197 231 : if (pageNum != nPages)
1198 : {
1199 11 : if (poDoc->doc->GetPageDictionary(nPages - 1) == nullptr)
1200 : {
1201 0 : CPLError(CE_Failure, CPLE_AppDefined,
1202 : "Invalid PDF : invalid page count");
1203 0 : CPLReleaseMutex(g_oPdfiumLoadDocMutex);
1204 0 : return FALSE;
1205 : }
1206 : }
1207 :
1208 231 : TMapPdfiumPages::iterator itPage;
1209 231 : itPage = poDoc->pages.find(pageNum);
1210 231 : TPdfiumPageStruct *poPage = nullptr;
1211 : // Page not loaded
1212 231 : if (itPage == poDoc->pages.end())
1213 : {
1214 226 : auto pDict = poDoc->doc->GetPageDictionary(pageNum - 1);
1215 226 : if (pDict == nullptr)
1216 : {
1217 0 : CPLError(CE_Failure, CPLE_AppDefined,
1218 : "Invalid PDFium : invalid page");
1219 :
1220 0 : CPLReleaseMutex(g_oPdfiumLoadDocMutex);
1221 0 : return FALSE;
1222 : }
1223 : auto pPage = pdfium::MakeRetain<CPDF_Page>(
1224 226 : poDoc->doc,
1225 : // coverity is confused by WrapRetain(), believing that multiple
1226 : // smart pointers manage the same raw pointer. Which is actually
1227 : // true, but a RetainPtr holds a reference counted object. It is
1228 : // thus safe to have several RetainPtr holding it.
1229 : // coverity[multiple_init_smart_ptr]
1230 226 : pdfium::WrapRetain(const_cast<CPDF_Dictionary *>(pDict.Get())));
1231 :
1232 226 : poPage = new TPdfiumPageStruct;
1233 226 : if (!poPage)
1234 : {
1235 0 : CPLError(CE_Failure, CPLE_AppDefined,
1236 : "Not enough memory for Pdfium Page object");
1237 :
1238 0 : CPLReleaseMutex(g_oPdfiumLoadDocMutex);
1239 0 : return FALSE;
1240 : }
1241 226 : poPage->pageNum = pageNum;
1242 226 : poPage->page = pPage.Leak();
1243 226 : poPage->readMutex = nullptr;
1244 226 : poPage->sharedNum = 0;
1245 :
1246 226 : poDoc->pages[pageNum] = poPage;
1247 : }
1248 : // Page already loaded
1249 : else
1250 : {
1251 5 : poPage = itPage->second;
1252 : }
1253 :
1254 : // Increase number of used
1255 231 : ++poPage->sharedNum;
1256 :
1257 231 : if (doc)
1258 231 : *doc = poDoc;
1259 231 : if (page)
1260 231 : *page = poPage;
1261 231 : if (pnPageCount)
1262 231 : *pnPageCount = nPages;
1263 :
1264 231 : CPLReleaseMutex(g_oPdfiumLoadDocMutex);
1265 :
1266 231 : return TRUE;
1267 : }
1268 :
1269 : // ~ static int LoadPdfiumDocumentPage()
1270 :
1271 231 : static int UnloadPdfiumDocumentPage(TPdfiumDocumentStruct **doc,
1272 : TPdfiumPageStruct **page)
1273 : {
1274 231 : if (!doc || !page)
1275 0 : return FALSE;
1276 :
1277 231 : TPdfiumPageStruct *pPage = *page;
1278 231 : TPdfiumDocumentStruct *pDoc = *doc;
1279 :
1280 : // Get mutex for loading pdfium
1281 231 : CPLCreateOrAcquireMutex(&g_oPdfiumLoadDocMutex, PDFIUM_MUTEX_TIMEOUT);
1282 :
1283 : // Decrease page use
1284 231 : --pPage->sharedNum;
1285 :
1286 : #ifdef DEBUG
1287 231 : CPLDebug("PDF", "PDFDataset::UnloadPdfiumDocumentPage: page shared num %d",
1288 : pPage->sharedNum);
1289 : #endif
1290 : // Page is used (also document)
1291 231 : if (pPage->sharedNum != 0)
1292 : {
1293 5 : CPLReleaseMutex(g_oPdfiumLoadDocMutex);
1294 5 : return TRUE;
1295 : }
1296 :
1297 : // Get mutex, release and destroy it
1298 226 : CPLCreateOrAcquireMutex(&(pPage->readMutex), PDFIUM_MUTEX_TIMEOUT);
1299 226 : CPLReleaseMutex(pPage->readMutex);
1300 226 : CPLDestroyMutex(pPage->readMutex);
1301 : // Close page and remove from map
1302 226 : FPDF_ClosePage(FPDFPageFromIPDFPage(pPage->page));
1303 :
1304 226 : pDoc->pages.erase(pPage->pageNum);
1305 226 : delete pPage;
1306 226 : pPage = nullptr;
1307 :
1308 : #ifdef DEBUG
1309 226 : CPLDebug("PDF", "PDFDataset::UnloadPdfiumDocumentPage: pages %lu",
1310 : pDoc->pages.size());
1311 : #endif
1312 : // Another page is used
1313 226 : if (!pDoc->pages.empty())
1314 : {
1315 4 : CPLReleaseMutex(g_oPdfiumLoadDocMutex);
1316 4 : return TRUE;
1317 : }
1318 :
1319 : // Close document and remove from map
1320 222 : FPDF_CloseDocument(FPDFDocumentFromCPDFDocument(pDoc->doc));
1321 222 : g_mPdfiumDatasets.erase(pDoc->filename);
1322 222 : CPLFree(pDoc->filename);
1323 222 : VSIFCloseL(static_cast<VSILFILE *>(pDoc->psFileAccess->m_Param));
1324 222 : delete pDoc->psFileAccess;
1325 222 : delete pDoc;
1326 222 : pDoc = nullptr;
1327 :
1328 : #ifdef DEBUG
1329 222 : CPLDebug("PDF", "PDFDataset::UnloadPdfiumDocumentPage: documents %lu",
1330 : g_mPdfiumDatasets.size());
1331 : #endif
1332 : // Another document is used
1333 222 : if (!g_mPdfiumDatasets.empty())
1334 : {
1335 3 : CPLReleaseMutex(g_oPdfiumLoadDocMutex);
1336 3 : return TRUE;
1337 : }
1338 :
1339 : #ifdef DEBUG
1340 219 : CPLDebug("PDF", "PDFDataset::UnloadPdfiumDocumentPage: Nothing loaded, "
1341 : "destroy Library");
1342 : #endif
1343 : // No document loaded, destroy pdfium
1344 219 : FPDF_DestroyLibrary();
1345 219 : PDFDataset::g_bPdfiumInit = FALSE;
1346 :
1347 219 : CPLReleaseMutex(g_oPdfiumLoadDocMutex);
1348 :
1349 219 : return TRUE;
1350 : }
1351 :
1352 : // ~ static int UnloadPdfiumDocumentPage()
1353 :
1354 : #endif // ~ HAVE_PDFIUM
1355 :
1356 : /************************************************************************/
1357 : /* GetOption() */
1358 : /************************************************************************/
1359 :
1360 2687 : const char *PDFDataset::GetOption(char **papszOpenOptionsIn,
1361 : const char *pszOptionName,
1362 : const char *pszDefaultVal)
1363 : {
1364 2687 : CPLErr eLastErrType = CPLGetLastErrorType();
1365 2687 : CPLErrorNum nLastErrno = CPLGetLastErrorNo();
1366 5374 : CPLString osLastErrorMsg(CPLGetLastErrorMsg());
1367 2687 : CPLXMLNode *psNode = CPLParseXMLString(PDFGetOpenOptionList());
1368 2687 : CPLErrorSetState(eLastErrType, nLastErrno, osLastErrorMsg);
1369 2687 : if (psNode == nullptr)
1370 0 : return pszDefaultVal;
1371 2687 : CPLXMLNode *psIter = psNode->psChild;
1372 12287 : while (psIter != nullptr)
1373 : {
1374 12287 : if (EQUAL(CPLGetXMLValue(psIter, "name", ""), pszOptionName))
1375 : {
1376 : const char *pszVal =
1377 2687 : CSLFetchNameValue(papszOpenOptionsIn, pszOptionName);
1378 2687 : if (pszVal != nullptr)
1379 : {
1380 36 : CPLDestroyXMLNode(psNode);
1381 36 : return pszVal;
1382 : }
1383 : const char *pszAltConfigOption =
1384 2651 : CPLGetXMLValue(psIter, "alt_config_option", nullptr);
1385 2651 : if (pszAltConfigOption != nullptr)
1386 : {
1387 2651 : pszVal = CPLGetConfigOption(pszAltConfigOption, pszDefaultVal);
1388 2651 : CPLDestroyXMLNode(psNode);
1389 2651 : return pszVal;
1390 : }
1391 0 : CPLDestroyXMLNode(psNode);
1392 0 : return pszDefaultVal;
1393 : }
1394 9600 : psIter = psIter->psNext;
1395 : }
1396 0 : CPLError(CE_Failure, CPLE_AppDefined,
1397 : "Requesting an undocumented open option '%s'", pszOptionName);
1398 0 : CPLDestroyXMLNode(psNode);
1399 0 : return pszDefaultVal;
1400 : }
1401 :
1402 : #ifdef HAVE_PDFIUM
1403 :
1404 : /************************************************************************/
1405 : /* GDALPDFiumOCContext */
1406 : /************************************************************************/
1407 :
1408 : class GDALPDFiumOCContext : public CPDF_OCContextInterface
1409 : {
1410 : PDFDataset *m_poDS;
1411 : RetainPtr<CPDF_OCContext> m_DefaultOCContext;
1412 :
1413 : CPL_DISALLOW_COPY_ASSIGN(GDALPDFiumOCContext)
1414 :
1415 : public:
1416 64 : GDALPDFiumOCContext(PDFDataset *poDS, CPDF_Document *pDoc,
1417 : CPDF_OCContext::UsageType usage)
1418 64 : : m_poDS(poDS),
1419 64 : m_DefaultOCContext(pdfium::MakeRetain<CPDF_OCContext>(pDoc, usage))
1420 : {
1421 64 : }
1422 :
1423 : virtual bool
1424 12996 : CheckOCGDictVisible(const CPDF_Dictionary *pOCGDict) const override
1425 : {
1426 : // CPLDebug("PDF", "CheckOCGDictVisible(%d,%d)",
1427 : // pOCGDict->GetObjNum(), pOCGDict->GetGenNum() );
1428 : PDFDataset::VisibilityState eVisibility =
1429 12996 : m_poDS->GetVisibilityStateForOGCPdfium(pOCGDict->GetObjNum(),
1430 12996 : pOCGDict->GetGenNum());
1431 12996 : if (eVisibility == PDFDataset::VISIBILITY_ON)
1432 3294 : return true;
1433 9702 : if (eVisibility == PDFDataset::VISIBILITY_OFF)
1434 999 : return false;
1435 8703 : return m_DefaultOCContext->CheckOCGDictVisible(pOCGDict);
1436 : }
1437 : };
1438 :
1439 : /************************************************************************/
1440 : /* GDALPDFiumRenderDeviceDriver */
1441 : /************************************************************************/
1442 :
1443 : class GDALPDFiumRenderDeviceDriver : public RenderDeviceDriverIface
1444 : {
1445 : std::unique_ptr<RenderDeviceDriverIface> m_poParent;
1446 : CFX_RenderDevice *m_pDevice;
1447 :
1448 : int bEnableVector;
1449 : int bEnableText;
1450 : int bEnableBitmap;
1451 : int bTemporaryEnableVectorForTextStroking;
1452 :
1453 : CPL_DISALLOW_COPY_ASSIGN(GDALPDFiumRenderDeviceDriver)
1454 :
1455 : public:
1456 6 : GDALPDFiumRenderDeviceDriver(
1457 : std::unique_ptr<RenderDeviceDriverIface> &&poParent,
1458 : CFX_RenderDevice *pDevice)
1459 12 : : m_poParent(std::move(poParent)), m_pDevice(pDevice),
1460 : bEnableVector(TRUE), bEnableText(TRUE), bEnableBitmap(TRUE),
1461 6 : bTemporaryEnableVectorForTextStroking(FALSE)
1462 : {
1463 6 : }
1464 :
1465 12 : virtual ~GDALPDFiumRenderDeviceDriver() = default;
1466 :
1467 6 : void SetEnableVector(int bFlag)
1468 : {
1469 6 : bEnableVector = bFlag;
1470 6 : }
1471 :
1472 6 : void SetEnableText(int bFlag)
1473 : {
1474 6 : bEnableText = bFlag;
1475 6 : }
1476 :
1477 6 : void SetEnableBitmap(int bFlag)
1478 : {
1479 6 : bEnableBitmap = bFlag;
1480 6 : }
1481 :
1482 6 : virtual DeviceType GetDeviceType() const override
1483 : {
1484 6 : return m_poParent->GetDeviceType();
1485 : }
1486 :
1487 24 : virtual int GetDeviceCaps(int caps_id) const override
1488 : {
1489 24 : return m_poParent->GetDeviceCaps(caps_id);
1490 : }
1491 :
1492 36 : virtual void SaveState() override
1493 : {
1494 36 : m_poParent->SaveState();
1495 36 : }
1496 :
1497 54 : virtual void RestoreState(bool bKeepSaved) override
1498 : {
1499 54 : m_poParent->RestoreState(bKeepSaved);
1500 54 : }
1501 :
1502 6 : virtual void SetBaseClip(const FX_RECT &rect) override
1503 : {
1504 6 : m_poParent->SetBaseClip(rect);
1505 6 : }
1506 :
1507 : virtual bool
1508 18 : SetClip_PathFill(const CFX_Path &path, const CFX_Matrix *pObject2Device,
1509 : const CFX_FillRenderOptions &fill_options) override
1510 : {
1511 18 : if (!bEnableVector && !bTemporaryEnableVectorForTextStroking)
1512 9 : return true;
1513 9 : return m_poParent->SetClip_PathFill(path, pObject2Device, fill_options);
1514 : }
1515 :
1516 : virtual bool
1517 0 : SetClip_PathStroke(const CFX_Path &path, const CFX_Matrix *pObject2Device,
1518 : const CFX_GraphStateData *pGraphState) override
1519 : {
1520 0 : if (!bEnableVector && !bTemporaryEnableVectorForTextStroking)
1521 0 : return true;
1522 0 : return m_poParent->SetClip_PathStroke(path, pObject2Device,
1523 0 : pGraphState);
1524 : }
1525 :
1526 18 : virtual bool DrawPath(const CFX_Path &path,
1527 : const CFX_Matrix *pObject2Device,
1528 : const CFX_GraphStateData *pGraphState,
1529 : uint32_t fill_color, uint32_t stroke_color,
1530 : const CFX_FillRenderOptions &fill_options,
1531 : BlendMode blend_type) override
1532 : {
1533 18 : if (!bEnableVector && !bTemporaryEnableVectorForTextStroking)
1534 9 : return true;
1535 18 : return m_poParent->DrawPath(path, pObject2Device, pGraphState,
1536 : fill_color, stroke_color, fill_options,
1537 9 : blend_type);
1538 : }
1539 :
1540 0 : virtual bool FillRectWithBlend(const FX_RECT &rect, uint32_t fill_color,
1541 : BlendMode blend_type) override
1542 : {
1543 0 : return m_poParent->FillRectWithBlend(rect, fill_color, blend_type);
1544 : }
1545 :
1546 0 : virtual bool DrawCosmeticLine(const CFX_PointF &ptMoveTo,
1547 : const CFX_PointF &ptLineTo, uint32_t color,
1548 : BlendMode blend_typeL) override
1549 : {
1550 0 : if (!bEnableVector && !bTemporaryEnableVectorForTextStroking)
1551 0 : return TRUE;
1552 0 : return m_poParent->DrawCosmeticLine(ptMoveTo, ptLineTo, color,
1553 0 : blend_typeL);
1554 : }
1555 :
1556 84 : virtual FX_RECT GetClipBox() const override
1557 : {
1558 84 : return m_poParent->GetClipBox();
1559 : }
1560 :
1561 0 : virtual bool GetDIBits(RetainPtr<CFX_DIBitmap> bitmap, int left,
1562 : int top) const override
1563 : {
1564 0 : return m_poParent->GetDIBits(std::move(bitmap), left, top);
1565 : }
1566 :
1567 0 : virtual RetainPtr<const CFX_DIBitmap> GetBackDrop() const override
1568 : {
1569 0 : return m_poParent->GetBackDrop();
1570 : }
1571 :
1572 3 : virtual bool SetDIBits(RetainPtr<const CFX_DIBBase> bitmap, uint32_t color,
1573 : const FX_RECT &src_rect, int dest_left, int dest_top,
1574 : BlendMode blend_type) override
1575 : {
1576 3 : if (!bEnableBitmap && !bTemporaryEnableVectorForTextStroking)
1577 0 : return true;
1578 6 : return m_poParent->SetDIBits(std::move(bitmap), color, src_rect,
1579 3 : dest_left, dest_top, blend_type);
1580 : }
1581 :
1582 0 : virtual bool StretchDIBits(RetainPtr<const CFX_DIBBase> bitmap,
1583 : uint32_t color, int dest_left, int dest_top,
1584 : int dest_width, int dest_height,
1585 : const FX_RECT *pClipRect,
1586 : const FXDIB_ResampleOptions &options,
1587 : BlendMode blend_type) override
1588 : {
1589 0 : if (!bEnableBitmap && !bTemporaryEnableVectorForTextStroking)
1590 0 : return true;
1591 0 : return m_poParent->StretchDIBits(std::move(bitmap), color, dest_left,
1592 : dest_top, dest_width, dest_height,
1593 0 : pClipRect, options, blend_type);
1594 : }
1595 :
1596 6 : virtual StartResult StartDIBits(RetainPtr<const CFX_DIBBase> bitmap,
1597 : float alpha, uint32_t color,
1598 : const CFX_Matrix &matrix,
1599 : const FXDIB_ResampleOptions &options,
1600 : BlendMode blend_type) override
1601 : {
1602 6 : if (!bEnableBitmap && !bTemporaryEnableVectorForTextStroking)
1603 3 : return StartResult(Result::kSuccess, nullptr);
1604 3 : return m_poParent->StartDIBits(std::move(bitmap), alpha, color, matrix,
1605 3 : options, blend_type);
1606 : }
1607 :
1608 3 : virtual bool ContinueDIBits(CFX_AggImageRenderer *handle,
1609 : PauseIndicatorIface *pPause) override
1610 : {
1611 3 : return m_poParent->ContinueDIBits(handle, pPause);
1612 : }
1613 :
1614 9 : virtual bool DrawDeviceText(const pdfium::span<const TextCharPos> &pCharPos,
1615 : CFX_Font *pFont,
1616 : const CFX_Matrix &mtObject2Device,
1617 : float font_size, uint32_t color,
1618 : const CFX_TextRenderOptions &options) override
1619 : {
1620 9 : if (bEnableText)
1621 : {
1622 : // This is quite tricky. We call again the guy who called us
1623 : // (CFX_RenderDevice::DrawNormalText()) but we set a special flag to
1624 : // allow vector&raster operations so that the rendering will happen
1625 : // in the next phase
1626 6 : if (bTemporaryEnableVectorForTextStroking)
1627 3 : return FALSE; // this is the default behavior of the parent
1628 3 : bTemporaryEnableVectorForTextStroking = true;
1629 3 : bool bRet = m_pDevice->DrawNormalText(
1630 : pCharPos, pFont, font_size, mtObject2Device, color, options);
1631 3 : bTemporaryEnableVectorForTextStroking = FALSE;
1632 3 : return bRet;
1633 : }
1634 : else
1635 3 : return true; // pretend that we did the job
1636 : }
1637 :
1638 0 : virtual int GetDriverType() const override
1639 : {
1640 0 : return m_poParent->GetDriverType();
1641 : }
1642 :
1643 : #if defined(_SKIA_SUPPORT_)
1644 : virtual bool DrawShading(const CPDF_ShadingPattern &pattern,
1645 : const CFX_Matrix &matrix, const FX_RECT &clip_rect,
1646 : int alpha) override
1647 : {
1648 : if (!bEnableBitmap && !bTemporaryEnableVectorForTextStroking)
1649 : return true;
1650 : return m_poParent->DrawShading(pattern, matrix, clip_rect, alpha);
1651 : }
1652 : #endif
1653 :
1654 0 : bool MultiplyAlpha(float alpha) override
1655 : {
1656 0 : return m_poParent->MultiplyAlpha(alpha);
1657 : }
1658 :
1659 0 : bool MultiplyAlphaMask(RetainPtr<const CFX_DIBitmap> mask) override
1660 : {
1661 0 : return m_poParent->MultiplyAlphaMask(std::move(mask));
1662 : }
1663 :
1664 : #if defined(_SKIA_SUPPORT_)
1665 : virtual bool SetBitsWithMask(RetainPtr<const CFX_DIBBase> bitmap,
1666 : RetainPtr<const CFX_DIBBase> mask, int left,
1667 : int top, float alpha,
1668 : BlendMode blend_type) override
1669 : {
1670 : if (!bEnableBitmap && !bTemporaryEnableVectorForTextStroking)
1671 : return true;
1672 : return m_poParent->SetBitsWithMask(std::move(bitmap), std::move(mask),
1673 : left, top, alpha, blend_type);
1674 : }
1675 :
1676 : virtual void SetGroupKnockout(bool group_knockout) override
1677 : {
1678 : m_poParent->SetGroupKnockout(group_knockout);
1679 : }
1680 : #endif
1681 : #if defined _SKIA_SUPPORT_ || defined _SKIA_SUPPORT_PATHS_
1682 : virtual void Flush() override
1683 : {
1684 : return m_poParent->Flush();
1685 : }
1686 : #endif
1687 : };
1688 :
1689 : /************************************************************************/
1690 : /* PDFiumRenderPageBitmap() */
1691 : /************************************************************************/
1692 :
1693 : /* This method is a customization of RenderPageImpl()
1694 : from pdfium/fpdfsdk/cpdfsdk_renderpage.cpp to allow selection of which OGC/layer are
1695 : active. Thus it inherits the following license */
1696 : // Copyright 2014-2020 PDFium Authors. All rights reserved.
1697 : //
1698 : // Redistribution and use in source and binary forms, with or without
1699 : // modification, are permitted provided that the following conditions are
1700 : // met:
1701 : //
1702 : // * Redistributions of source code must retain the above copyright
1703 : // notice, this list of conditions and the following disclaimer.
1704 : // * Redistributions in binary form must reproduce the above
1705 : // copyright notice, this list of conditions and the following disclaimer
1706 : // in the documentation and/or other materials provided with the
1707 : // distribution.
1708 : // * Neither the name of Google Inc. nor the names of its
1709 : // contributors may be used to endorse or promote products derived from
1710 : // this software without specific prior written permission.
1711 : //
1712 : // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
1713 : // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
1714 : // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
1715 : // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
1716 : // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
1717 : // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
1718 : // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
1719 : // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
1720 : // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
1721 : // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
1722 : // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1723 :
1724 64 : static void myRenderPageImpl(PDFDataset *poDS, CPDF_PageRenderContext *pContext,
1725 : CPDF_Page *pPage, const CFX_Matrix &matrix,
1726 : const FX_RECT &clipping_rect, int flags,
1727 : const FPDF_COLORSCHEME *color_scheme,
1728 : bool bNeedToRestore, CPDFSDK_PauseAdapter *pause)
1729 : {
1730 64 : if (!pContext->m_pOptions)
1731 64 : pContext->m_pOptions = std::make_unique<CPDF_RenderOptions>();
1732 :
1733 64 : auto &options = pContext->m_pOptions->GetOptions();
1734 64 : options.bClearType = !!(flags & FPDF_LCD_TEXT);
1735 64 : options.bNoNativeText = !!(flags & FPDF_NO_NATIVETEXT);
1736 64 : options.bLimitedImageCache = !!(flags & FPDF_RENDER_LIMITEDIMAGECACHE);
1737 64 : options.bForceHalftone = !!(flags & FPDF_RENDER_FORCEHALFTONE);
1738 64 : options.bNoTextSmooth = !!(flags & FPDF_RENDER_NO_SMOOTHTEXT);
1739 64 : options.bNoImageSmooth = !!(flags & FPDF_RENDER_NO_SMOOTHIMAGE);
1740 64 : options.bNoPathSmooth = !!(flags & FPDF_RENDER_NO_SMOOTHPATH);
1741 :
1742 : // Grayscale output
1743 64 : if (flags & FPDF_GRAYSCALE)
1744 0 : pContext->m_pOptions->SetColorMode(CPDF_RenderOptions::kGray);
1745 :
1746 64 : if (color_scheme)
1747 : {
1748 0 : pContext->m_pOptions->SetColorMode(CPDF_RenderOptions::kForcedColor);
1749 0 : SetColorFromScheme(color_scheme, pContext->m_pOptions.get());
1750 0 : options.bConvertFillToStroke = !!(flags & FPDF_CONVERT_FILL_TO_STROKE);
1751 : }
1752 :
1753 64 : const CPDF_OCContext::UsageType usage = (flags & FPDF_PRINTING)
1754 64 : ? CPDF_OCContext::kPrint
1755 : : CPDF_OCContext::kView;
1756 128 : pContext->m_pOptions->SetOCContext(pdfium::MakeRetain<GDALPDFiumOCContext>(
1757 64 : poDS, pPage->GetDocument(), usage));
1758 :
1759 64 : pContext->m_pDevice->SaveState();
1760 64 : pContext->m_pDevice->SetBaseClip(clipping_rect);
1761 64 : pContext->m_pDevice->SetClip_Rect(clipping_rect);
1762 64 : pContext->m_pContext = std::make_unique<CPDF_RenderContext>(
1763 128 : pPage->GetDocument(), pPage->GetMutablePageResources(),
1764 128 : pPage->GetPageImageCache());
1765 :
1766 64 : pContext->m_pContext->AppendLayer(pPage, matrix);
1767 :
1768 64 : if (flags & FPDF_ANNOT)
1769 : {
1770 0 : auto pOwnedList = std::make_unique<CPDF_AnnotList>(pPage);
1771 0 : CPDF_AnnotList *pList = pOwnedList.get();
1772 0 : pContext->m_pAnnots = std::move(pOwnedList);
1773 : bool bPrinting =
1774 0 : pContext->m_pDevice->GetDeviceType() != DeviceType::kDisplay;
1775 :
1776 : // TODO(https://crbug.com/pdfium/993) - maybe pass true here.
1777 0 : const bool bShowWidget = false;
1778 0 : pList->DisplayAnnots(pContext->m_pContext.get(), bPrinting, matrix,
1779 : bShowWidget);
1780 : }
1781 :
1782 64 : pContext->m_pRenderer = std::make_unique<CPDF_ProgressiveRenderer>(
1783 64 : pContext->m_pContext.get(), pContext->m_pDevice.get(),
1784 128 : pContext->m_pOptions.get());
1785 64 : pContext->m_pRenderer->Start(pause);
1786 64 : if (bNeedToRestore)
1787 64 : pContext->m_pDevice->RestoreState(false);
1788 64 : }
1789 :
1790 : static void
1791 64 : myRenderPageWithContext(PDFDataset *poDS, CPDF_PageRenderContext *pContext,
1792 : FPDF_PAGE page, int start_x, int start_y, int size_x,
1793 : int size_y, int rotate, int flags,
1794 : const FPDF_COLORSCHEME *color_scheme,
1795 : bool bNeedToRestore, CPDFSDK_PauseAdapter *pause)
1796 : {
1797 64 : CPDF_Page *pPage = CPDFPageFromFPDFPage(page);
1798 64 : if (!pPage)
1799 0 : return;
1800 :
1801 64 : const FX_RECT rect(start_x, start_y, start_x + size_x, start_y + size_y);
1802 64 : myRenderPageImpl(poDS, pContext, pPage,
1803 128 : pPage->GetDisplayMatrix(rect, rotate), rect, flags,
1804 : color_scheme, bNeedToRestore, pause);
1805 : }
1806 :
1807 : class MyRenderDevice final : public CFX_RenderDevice
1808 : {
1809 :
1810 : public:
1811 : // Substitution for CFX_DefaultRenderDevice::Attach
1812 : bool Attach(const RetainPtr<CFX_DIBitmap> &pBitmap, bool bRgbByteOrder,
1813 : const RetainPtr<CFX_DIBitmap> &pBackdropBitmap,
1814 : bool bGroupKnockout, const char *pszRenderingOptions);
1815 : };
1816 :
1817 64 : bool MyRenderDevice::Attach(const RetainPtr<CFX_DIBitmap> &pBitmap,
1818 : bool bRgbByteOrder,
1819 : const RetainPtr<CFX_DIBitmap> &pBackdropBitmap,
1820 : bool bGroupKnockout,
1821 : const char *pszRenderingOptions)
1822 : {
1823 64 : SetBitmap(pBitmap);
1824 :
1825 : std::unique_ptr<RenderDeviceDriverIface> driver =
1826 64 : std::make_unique<pdfium::CFX_AggDeviceDriver>(
1827 64 : pBitmap, bRgbByteOrder, pBackdropBitmap, bGroupKnockout);
1828 64 : if (pszRenderingOptions != nullptr)
1829 : {
1830 7 : int bEnableVector = FALSE;
1831 7 : int bEnableText = FALSE;
1832 7 : int bEnableBitmap = FALSE;
1833 :
1834 7 : char **papszTokens = CSLTokenizeString2(pszRenderingOptions, " ,", 0);
1835 19 : for (int i = 0; papszTokens[i] != nullptr; i++)
1836 : {
1837 12 : if (EQUAL(papszTokens[i], "VECTOR"))
1838 4 : bEnableVector = TRUE;
1839 8 : else if (EQUAL(papszTokens[i], "TEXT"))
1840 4 : bEnableText = TRUE;
1841 4 : else if (EQUAL(papszTokens[i], "RASTER") ||
1842 0 : EQUAL(papszTokens[i], "BITMAP"))
1843 4 : bEnableBitmap = TRUE;
1844 : else
1845 : {
1846 0 : CPLError(CE_Warning, CPLE_NotSupported,
1847 : "Value %s is not a valid value for "
1848 : "GDAL_PDF_RENDERING_OPTIONS",
1849 0 : papszTokens[i]);
1850 : }
1851 : }
1852 7 : CSLDestroy(papszTokens);
1853 :
1854 7 : if (!bEnableVector || !bEnableText || !bEnableBitmap)
1855 : {
1856 : std::unique_ptr<GDALPDFiumRenderDeviceDriver> poGDALRDDriver =
1857 : std::make_unique<GDALPDFiumRenderDeviceDriver>(
1858 12 : std::move(driver), this);
1859 6 : poGDALRDDriver->SetEnableVector(bEnableVector);
1860 6 : poGDALRDDriver->SetEnableText(bEnableText);
1861 6 : poGDALRDDriver->SetEnableBitmap(bEnableBitmap);
1862 6 : driver = std::move(poGDALRDDriver);
1863 : }
1864 : }
1865 :
1866 64 : SetDeviceDriver(std::move(driver));
1867 128 : return true;
1868 : }
1869 :
1870 64 : void PDFDataset::PDFiumRenderPageBitmap(FPDF_BITMAP bitmap, FPDF_PAGE page,
1871 : int start_x, int start_y, int size_x,
1872 : int size_y,
1873 : const char *pszRenderingOptions)
1874 : {
1875 64 : const int rotate = 0;
1876 64 : const int flags = 0;
1877 :
1878 64 : if (!bitmap)
1879 0 : return;
1880 :
1881 64 : CPDF_Page *pPage = CPDFPageFromFPDFPage(page);
1882 64 : if (!pPage)
1883 0 : return;
1884 :
1885 128 : auto pOwnedContext = std::make_unique<CPDF_PageRenderContext>();
1886 64 : CPDF_PageRenderContext *pContext = pOwnedContext.get();
1887 128 : CPDF_Page::RenderContextClearer clearer(pPage);
1888 64 : pPage->SetRenderContext(std::move(pOwnedContext));
1889 :
1890 128 : auto pOwnedDevice = std::make_unique<MyRenderDevice>();
1891 64 : auto pDevice = pOwnedDevice.get();
1892 64 : pContext->m_pDevice = std::move(pOwnedDevice);
1893 :
1894 128 : RetainPtr<CFX_DIBitmap> pBitmap(CFXDIBitmapFromFPDFBitmap(bitmap));
1895 :
1896 64 : pDevice->Attach(pBitmap, !!(flags & FPDF_REVERSE_BYTE_ORDER), nullptr,
1897 : false, pszRenderingOptions);
1898 :
1899 64 : myRenderPageWithContext(this, pContext, page, start_x, start_y, size_x,
1900 : size_y, rotate, flags,
1901 : /*color_scheme=*/nullptr,
1902 : /*need_to_restore=*/true, /*pause=*/nullptr);
1903 :
1904 : #ifdef _SKIA_SUPPORT_PATHS_
1905 : pDevice->Flush(true);
1906 : pBitmap->UnPreMultiply();
1907 : #endif
1908 : }
1909 :
1910 : #endif /* HAVE_PDFIUM */
1911 :
1912 : /************************************************************************/
1913 : /* ReadPixels() */
1914 : /************************************************************************/
1915 :
1916 115 : CPLErr PDFDataset::ReadPixels(int nReqXOff, int nReqYOff, int nReqXSize,
1917 : int nReqYSize, GSpacing nPixelSpace,
1918 : GSpacing nLineSpace, GSpacing nBandSpace,
1919 : GByte *pabyData)
1920 : {
1921 115 : CPLErr eErr = CE_None;
1922 : const char *pszRenderingOptions =
1923 115 : GetOption(papszOpenOptions, "RENDERING_OPTIONS", nullptr);
1924 :
1925 : #ifdef HAVE_POPPLER
1926 115 : if (m_bUseLib.test(PDFLIB_POPPLER))
1927 : {
1928 : SplashColor sColor;
1929 51 : sColor[0] = 255;
1930 51 : sColor[1] = 255;
1931 51 : sColor[2] = 255;
1932 : GDALPDFOutputDev *poSplashOut = new GDALPDFOutputDev(
1933 51 : (nBands < 4) ? splashModeRGB8 : splashModeXBGR8, 4, false,
1934 51 : (nBands < 4) ? sColor : nullptr);
1935 :
1936 51 : if (pszRenderingOptions != nullptr)
1937 : {
1938 7 : poSplashOut->SetEnableVector(FALSE);
1939 7 : poSplashOut->SetEnableText(FALSE);
1940 7 : poSplashOut->SetEnableBitmap(FALSE);
1941 :
1942 : char **papszTokens =
1943 7 : CSLTokenizeString2(pszRenderingOptions, " ,", 0);
1944 19 : for (int i = 0; papszTokens[i] != nullptr; i++)
1945 : {
1946 12 : if (EQUAL(papszTokens[i], "VECTOR"))
1947 4 : poSplashOut->SetEnableVector(TRUE);
1948 8 : else if (EQUAL(papszTokens[i], "TEXT"))
1949 4 : poSplashOut->SetEnableText(TRUE);
1950 4 : else if (EQUAL(papszTokens[i], "RASTER") ||
1951 0 : EQUAL(papszTokens[i], "BITMAP"))
1952 4 : poSplashOut->SetEnableBitmap(TRUE);
1953 : else
1954 : {
1955 0 : CPLError(CE_Warning, CPLE_NotSupported,
1956 : "Value %s is not a valid value for "
1957 : "GDAL_PDF_RENDERING_OPTIONS",
1958 0 : papszTokens[i]);
1959 : }
1960 : }
1961 7 : CSLDestroy(papszTokens);
1962 : }
1963 :
1964 51 : PDFDoc *poDoc = m_poDocPoppler;
1965 51 : poSplashOut->startDoc(poDoc);
1966 :
1967 : /* EVIL: we modify a private member... */
1968 : /* poppler (at least 0.12 and 0.14 versions) don't render correctly */
1969 : /* some PDFs and display an error message 'Could not find a OCG with
1970 : * Ref' */
1971 : /* in those cases. This processing of optional content is an addition of
1972 : */
1973 : /* poppler in comparison to original xpdf, which hasn't the issue. All
1974 : * in */
1975 : /* all, nullifying optContent removes the error message and improves the
1976 : * rendering */
1977 51 : Catalog *poCatalog = poDoc->getCatalog();
1978 51 : OCGs *poOldOCGs = poCatalog->optContent;
1979 51 : if (!m_bUseOCG)
1980 44 : poCatalog->optContent = nullptr;
1981 : try
1982 : {
1983 51 : poDoc->displayPageSlice(poSplashOut, m_iPage, m_dfDPI, m_dfDPI, 0,
1984 : TRUE, false, false, nReqXOff, nReqYOff,
1985 : nReqXSize, nReqYSize);
1986 : }
1987 0 : catch (const std::exception &e)
1988 : {
1989 0 : CPLError(CE_Failure, CPLE_AppDefined,
1990 0 : "PDFDoc::displayPageSlice() failed with %s", e.what());
1991 : /* Restore back */
1992 0 : poCatalog->optContent = poOldOCGs;
1993 0 : delete poSplashOut;
1994 0 : return CE_Failure;
1995 : }
1996 :
1997 : /* Restore back */
1998 51 : poCatalog->optContent = poOldOCGs;
1999 :
2000 51 : SplashBitmap *poBitmap = poSplashOut->getBitmap();
2001 102 : if (poBitmap->getWidth() != nReqXSize ||
2002 51 : poBitmap->getHeight() != nReqYSize)
2003 : {
2004 0 : CPLError(
2005 : CE_Failure, CPLE_AppDefined,
2006 : "Bitmap decoded size (%dx%d) doesn't match raster size (%dx%d)",
2007 : poBitmap->getWidth(), poBitmap->getHeight(), nReqXSize,
2008 : nReqYSize);
2009 0 : delete poSplashOut;
2010 0 : return CE_Failure;
2011 : }
2012 :
2013 51 : GByte *pabyDataR = pabyData;
2014 51 : GByte *pabyDataG = pabyData + nBandSpace;
2015 51 : GByte *pabyDataB = pabyData + 2 * nBandSpace;
2016 51 : GByte *pabyDataA = pabyData + 3 * nBandSpace;
2017 51 : GByte *pabySrc = poBitmap->getDataPtr();
2018 : GByte *pabyAlphaSrc =
2019 51 : reinterpret_cast<GByte *>(poBitmap->getAlphaPtr());
2020 : int i, j;
2021 19802 : for (j = 0; j < nReqYSize; j++)
2022 : {
2023 19171900 : for (i = 0; i < nReqXSize; i++)
2024 : {
2025 19152100 : if (nBands < 4)
2026 : {
2027 19103500 : pabyDataR[i * nPixelSpace] = pabySrc[i * 3 + 0];
2028 19103500 : pabyDataG[i * nPixelSpace] = pabySrc[i * 3 + 1];
2029 19103500 : pabyDataB[i * nPixelSpace] = pabySrc[i * 3 + 2];
2030 : }
2031 : else
2032 : {
2033 48600 : pabyDataR[i * nPixelSpace] = pabySrc[i * 4 + 2];
2034 48600 : pabyDataG[i * nPixelSpace] = pabySrc[i * 4 + 1];
2035 48600 : pabyDataB[i * nPixelSpace] = pabySrc[i * 4 + 0];
2036 48600 : pabyDataA[i * nPixelSpace] = pabyAlphaSrc[i];
2037 : }
2038 : }
2039 19751 : pabyDataR += nLineSpace;
2040 19751 : pabyDataG += nLineSpace;
2041 19751 : pabyDataB += nLineSpace;
2042 19751 : pabyDataA += nLineSpace;
2043 19751 : pabyAlphaSrc += poBitmap->getAlphaRowSize();
2044 19751 : pabySrc += poBitmap->getRowSize();
2045 : }
2046 51 : delete poSplashOut;
2047 : }
2048 : #endif // HAVE_POPPLER
2049 :
2050 : #ifdef HAVE_PODOFO
2051 : if (m_bUseLib.test(PDFLIB_PODOFO))
2052 : {
2053 : if (m_bPdfToPpmFailed)
2054 : return CE_Failure;
2055 :
2056 : if (pszRenderingOptions != nullptr &&
2057 : !EQUAL(pszRenderingOptions, "RASTER,VECTOR,TEXT"))
2058 : {
2059 : CPLError(CE_Warning, CPLE_NotSupported,
2060 : "GDAL_PDF_RENDERING_OPTIONS only supported "
2061 : "when PDF lib is Poppler.");
2062 : }
2063 :
2064 : CPLString osTmpFilename;
2065 : int nRet;
2066 :
2067 : #ifdef notdef
2068 : int bUseSpawn =
2069 : CPLTestBool(CPLGetConfigOption("GDAL_PDF_USE_SPAWN", "YES"));
2070 : if (!bUseSpawn)
2071 : {
2072 : CPLString osCmd = CPLSPrintf(
2073 : "pdftoppm -r %f -x %d -y %d -W %d -H %d -f %d -l %d \"%s\"",
2074 : dfDPI, nReqXOff, nReqYOff, nReqXSize, nReqYSize, iPage, iPage,
2075 : osFilename.c_str());
2076 :
2077 : if (!osUserPwd.empty())
2078 : {
2079 : osCmd += " -upw \"";
2080 : osCmd += osUserPwd;
2081 : osCmd += "\"";
2082 : }
2083 :
2084 : CPLString osTmpFilenamePrefix = CPLGenerateTempFilename("pdf");
2085 : osTmpFilename =
2086 : CPLSPrintf("%s-%d.ppm", osTmpFilenamePrefix.c_str(), iPage);
2087 : osCmd += CPLSPrintf(" \"%s\"", osTmpFilenamePrefix.c_str());
2088 :
2089 : CPLDebug("PDF", "Running '%s'", osCmd.c_str());
2090 : nRet = CPLSystem(nullptr, osCmd.c_str());
2091 : }
2092 : else
2093 : #endif // notdef
2094 : {
2095 : char **papszArgs = nullptr;
2096 : papszArgs = CSLAddString(papszArgs, "pdftoppm");
2097 : papszArgs = CSLAddString(papszArgs, "-r");
2098 : papszArgs = CSLAddString(papszArgs, CPLSPrintf("%f", m_dfDPI));
2099 : papszArgs = CSLAddString(papszArgs, "-x");
2100 : papszArgs = CSLAddString(papszArgs, CPLSPrintf("%d", nReqXOff));
2101 : papszArgs = CSLAddString(papszArgs, "-y");
2102 : papszArgs = CSLAddString(papszArgs, CPLSPrintf("%d", nReqYOff));
2103 : papszArgs = CSLAddString(papszArgs, "-W");
2104 : papszArgs = CSLAddString(papszArgs, CPLSPrintf("%d", nReqXSize));
2105 : papszArgs = CSLAddString(papszArgs, "-H");
2106 : papszArgs = CSLAddString(papszArgs, CPLSPrintf("%d", nReqYSize));
2107 : papszArgs = CSLAddString(papszArgs, "-f");
2108 : papszArgs = CSLAddString(papszArgs, CPLSPrintf("%d", m_iPage));
2109 : papszArgs = CSLAddString(papszArgs, "-l");
2110 : papszArgs = CSLAddString(papszArgs, CPLSPrintf("%d", m_iPage));
2111 : if (!m_osUserPwd.empty())
2112 : {
2113 : papszArgs = CSLAddString(papszArgs, "-upw");
2114 : papszArgs = CSLAddString(papszArgs, m_osUserPwd.c_str());
2115 : }
2116 : papszArgs = CSLAddString(papszArgs, m_osFilename.c_str());
2117 :
2118 : osTmpFilename = VSIMemGenerateHiddenFilename("pdf_temp.ppm");
2119 : VSILFILE *fpOut = VSIFOpenL(osTmpFilename, "wb");
2120 : if (fpOut != nullptr)
2121 : {
2122 : nRet = CPLSpawn(papszArgs, nullptr, fpOut, FALSE);
2123 : VSIFCloseL(fpOut);
2124 : }
2125 : else
2126 : nRet = -1;
2127 :
2128 : CSLDestroy(papszArgs);
2129 : }
2130 :
2131 : if (nRet == 0)
2132 : {
2133 : auto poDS = std::unique_ptr<GDALDataset>(GDALDataset::Open(
2134 : osTmpFilename, GDAL_OF_RASTER, nullptr, nullptr, nullptr));
2135 : if (poDS)
2136 : {
2137 : if (poDS->GetRasterCount() == 3)
2138 : {
2139 : eErr = poDS->RasterIO(GF_Read, 0, 0, nReqXSize, nReqYSize,
2140 : pabyData, nReqXSize, nReqYSize,
2141 : GDT_Byte, 3, nullptr, nPixelSpace,
2142 : nLineSpace, nBandSpace, nullptr);
2143 : }
2144 : }
2145 : }
2146 : else
2147 : {
2148 : CPLDebug("PDF", "Ret code = %d", nRet);
2149 : m_bPdfToPpmFailed = true;
2150 : eErr = CE_Failure;
2151 : }
2152 : VSIUnlink(osTmpFilename);
2153 : }
2154 : #endif // HAVE_PODOFO
2155 : #ifdef HAVE_PDFIUM
2156 115 : if (m_bUseLib.test(PDFLIB_PDFIUM))
2157 : {
2158 64 : if (!m_poPagePdfium)
2159 : {
2160 0 : return CE_Failure;
2161 : }
2162 :
2163 : // Pdfium does not support multithreading
2164 64 : CPLCreateOrAcquireMutex(&g_oPdfiumReadMutex, PDFIUM_MUTEX_TIMEOUT);
2165 :
2166 64 : CPLCreateOrAcquireMutex(&(m_poPagePdfium->readMutex),
2167 : PDFIUM_MUTEX_TIMEOUT);
2168 :
2169 : // Parsing content required before rastering
2170 : // can takes too long for PDF with large number of objects/layers
2171 64 : m_poPagePdfium->page->ParseContent();
2172 :
2173 : FPDF_BITMAP bitmap =
2174 64 : FPDFBitmap_Create(nReqXSize, nReqYSize, nBands == 4 /*alpha*/);
2175 : // As coded now, FPDFBitmap_Create cannot allocate more than 1 GB
2176 64 : if (bitmap == nullptr)
2177 : {
2178 : // Release mutex - following code is thread-safe
2179 0 : CPLReleaseMutex(m_poPagePdfium->readMutex);
2180 0 : CPLReleaseMutex(g_oPdfiumReadMutex);
2181 :
2182 : #ifdef notdef
2183 : // If the requested area is not too small, then try subdividing
2184 : if ((GIntBig)nReqXSize * nReqYSize * 4 > 1024 * 1024)
2185 : {
2186 : #ifdef DEBUG
2187 : CPLDebug(
2188 : "PDF",
2189 : "Subdividing PDFDataset::ReadPixels(%d, %d, %d, %d, "
2190 : "scaleFactor=%d)",
2191 : nReqXOff, nReqYOff, nReqXSize, nReqYSize,
2192 : 1 << ((PDFRasterBand *)GetRasterBand(1))->nResolutionLevel);
2193 : #endif
2194 : if (nReqXSize >= nReqYSize)
2195 : {
2196 : eErr = ReadPixels(nReqXOff, nReqYOff, nReqXSize / 2,
2197 : nReqYSize, nPixelSpace, nLineSpace,
2198 : nBandSpace, pabyData);
2199 : if (eErr == CE_None)
2200 : {
2201 : eErr = ReadPixels(
2202 : nReqXSize / 2, nReqYOff, nReqXSize - nReqXSize / 2,
2203 : nReqYSize, nPixelSpace, nLineSpace, nBandSpace,
2204 : pabyData + nPixelSpace * (nReqXSize / 2));
2205 : }
2206 : }
2207 : else
2208 : {
2209 : eErr = ReadPixels(nReqXOff, nReqYOff, nReqXSize,
2210 : nReqYSize - nReqYSize / 2, nPixelSpace,
2211 : nLineSpace, nBandSpace, pabyData);
2212 : if (eErr == CE_None)
2213 : {
2214 : eErr =
2215 : ReadPixels(nReqXOff, nReqYSize / 2, nReqXSize,
2216 : nReqYSize - nReqYSize / 2, nPixelSpace,
2217 : nLineSpace, nBandSpace,
2218 : pabyData + nLineSpace * (nReqYSize / 2));
2219 : }
2220 : }
2221 : return eErr;
2222 : }
2223 : #endif
2224 :
2225 0 : CPLError(CE_Failure, CPLE_AppDefined,
2226 : "FPDFBitmap_Create(%d,%d) failed", nReqXSize, nReqYSize);
2227 :
2228 0 : return CE_Failure;
2229 : }
2230 : // alpha is 0% which is transported to FF if not alpha
2231 : // Default background color is white
2232 64 : FPDF_DWORD color = 0x00FFFFFF; // A,R,G,B
2233 64 : FPDFBitmap_FillRect(bitmap, 0, 0, nReqXSize, nReqYSize, color);
2234 :
2235 : #ifdef DEBUG
2236 : // start_x, start_y, size_x, size_y, rotate, flags
2237 64 : CPLDebug("PDF",
2238 : "PDFDataset::ReadPixels(%d, %d, %d, %d, scaleFactor=%d)",
2239 : nReqXOff, nReqYOff, nReqXSize, nReqYSize,
2240 64 : 1 << cpl::down_cast<PDFRasterBand *>(GetRasterBand(1))
2241 64 : ->nResolutionLevel);
2242 :
2243 64 : CPLDebug("PDF", "FPDF_RenderPageBitmap(%d, %d, %d, %d)", -nReqXOff,
2244 : -nReqYOff, nRasterXSize, nRasterYSize);
2245 : #endif
2246 :
2247 : // Part of PDF is render with -x, -y, page_width, page_height
2248 : // (not requested size!)
2249 64 : PDFiumRenderPageBitmap(
2250 64 : bitmap, FPDFPageFromIPDFPage(m_poPagePdfium->page), -nReqXOff,
2251 : -nReqYOff, nRasterXSize, nRasterYSize, pszRenderingOptions);
2252 :
2253 64 : int stride = FPDFBitmap_GetStride(bitmap);
2254 : const GByte *buffer =
2255 64 : reinterpret_cast<const GByte *>(FPDFBitmap_GetBuffer(bitmap));
2256 :
2257 : // Release mutex - following code is thread-safe
2258 64 : CPLReleaseMutex(m_poPagePdfium->readMutex);
2259 64 : CPLReleaseMutex(g_oPdfiumReadMutex);
2260 :
2261 : // Source data is B, G, R, unused.
2262 : // Destination data is R, G, B (,A if is alpha)
2263 64 : GByte *pabyDataR = pabyData;
2264 64 : GByte *pabyDataG = pabyData + 1 * nBandSpace;
2265 64 : GByte *pabyDataB = pabyData + 2 * nBandSpace;
2266 64 : GByte *pabyDataA = pabyData + 3 * nBandSpace;
2267 : // Copied from Poppler
2268 : int i, j;
2269 23539 : for (j = 0; j < nReqYSize; j++)
2270 : {
2271 20754200 : for (i = 0; i < nReqXSize; i++)
2272 : {
2273 20730800 : pabyDataR[i * nPixelSpace] = buffer[(i * 4) + 2];
2274 20730800 : pabyDataG[i * nPixelSpace] = buffer[(i * 4) + 1];
2275 20730800 : pabyDataB[i * nPixelSpace] = buffer[(i * 4) + 0];
2276 20730800 : if (nBands == 4)
2277 : {
2278 20730800 : pabyDataA[i * nPixelSpace] = buffer[(i * 4) + 3];
2279 : }
2280 : }
2281 23475 : pabyDataR += nLineSpace;
2282 23475 : pabyDataG += nLineSpace;
2283 23475 : pabyDataB += nLineSpace;
2284 23475 : pabyDataA += nLineSpace;
2285 23475 : buffer += stride;
2286 : }
2287 64 : FPDFBitmap_Destroy(bitmap);
2288 : }
2289 : #endif // ~ HAVE_PDFIUM
2290 :
2291 115 : return eErr;
2292 : }
2293 :
2294 : /************************************************************************/
2295 : /* ==================================================================== */
2296 : /* PDFImageRasterBand */
2297 : /* ==================================================================== */
2298 : /************************************************************************/
2299 :
2300 : class PDFImageRasterBand final : public PDFRasterBand
2301 : {
2302 : friend class PDFDataset;
2303 :
2304 : public:
2305 : PDFImageRasterBand(PDFDataset *, int);
2306 :
2307 : virtual CPLErr IReadBlock(int, int, void *) override;
2308 : };
2309 :
2310 : /************************************************************************/
2311 : /* PDFImageRasterBand() */
2312 : /************************************************************************/
2313 :
2314 0 : PDFImageRasterBand::PDFImageRasterBand(PDFDataset *poDSIn, int nBandIn)
2315 0 : : PDFRasterBand(poDSIn, nBandIn, 0)
2316 : {
2317 0 : }
2318 :
2319 : /************************************************************************/
2320 : /* IReadBlock() */
2321 : /************************************************************************/
2322 :
2323 0 : CPLErr PDFImageRasterBand::IReadBlock(int /* nBlockXOff */, int nBlockYOff,
2324 : void *pImage)
2325 : {
2326 0 : PDFDataset *poGDS = cpl::down_cast<PDFDataset *>(poDS);
2327 0 : CPLAssert(poGDS->m_poImageObj != nullptr);
2328 :
2329 0 : if (!poGDS->m_bTried)
2330 : {
2331 0 : int nBands = (poGDS->nBands == 1) ? 1 : 3;
2332 0 : poGDS->m_bTried = true;
2333 0 : if (nBands == 3)
2334 : {
2335 0 : poGDS->m_pabyCachedData = static_cast<GByte *>(
2336 0 : VSIMalloc3(nBands, nRasterXSize, nRasterYSize));
2337 0 : if (poGDS->m_pabyCachedData == nullptr)
2338 0 : return CE_Failure;
2339 : }
2340 :
2341 0 : GDALPDFStream *poStream = poGDS->m_poImageObj->GetStream();
2342 0 : GByte *pabyStream = nullptr;
2343 :
2344 0 : if (poStream == nullptr ||
2345 0 : static_cast<size_t>(poStream->GetLength()) !=
2346 0 : static_cast<size_t>(nBands) * nRasterXSize * nRasterYSize ||
2347 0 : (pabyStream = reinterpret_cast<GByte *>(poStream->GetBytes())) ==
2348 : nullptr)
2349 : {
2350 0 : VSIFree(poGDS->m_pabyCachedData);
2351 0 : poGDS->m_pabyCachedData = nullptr;
2352 0 : return CE_Failure;
2353 : }
2354 :
2355 0 : if (nBands == 3)
2356 : {
2357 : /* pixel interleaved to band interleaved */
2358 0 : for (size_t i = 0;
2359 0 : i < static_cast<size_t>(nRasterXSize) * nRasterYSize; i++)
2360 : {
2361 0 : poGDS->m_pabyCachedData[0 * static_cast<size_t>(nRasterXSize) *
2362 : nRasterYSize +
2363 0 : i] = pabyStream[3 * i + 0];
2364 0 : poGDS->m_pabyCachedData[1 * static_cast<size_t>(nRasterXSize) *
2365 0 : nRasterYSize +
2366 0 : i] = pabyStream[3 * i + 1];
2367 0 : poGDS->m_pabyCachedData[2 * static_cast<size_t>(nRasterXSize) *
2368 0 : nRasterYSize +
2369 0 : i] = pabyStream[3 * i + 2];
2370 : }
2371 0 : VSIFree(pabyStream);
2372 : }
2373 : else
2374 0 : poGDS->m_pabyCachedData = pabyStream;
2375 : }
2376 :
2377 0 : if (poGDS->m_pabyCachedData == nullptr)
2378 0 : return CE_Failure;
2379 :
2380 0 : if (nBand == 4)
2381 0 : memset(pImage, 255, nRasterXSize);
2382 : else
2383 0 : memcpy(pImage,
2384 0 : poGDS->m_pabyCachedData +
2385 0 : static_cast<size_t>(nBand - 1) * nRasterXSize *
2386 0 : nRasterYSize +
2387 0 : static_cast<size_t>(nBlockYOff) * nRasterXSize,
2388 0 : nRasterXSize);
2389 :
2390 0 : return CE_None;
2391 : }
2392 :
2393 : /************************************************************************/
2394 : /* PDFDataset() */
2395 : /************************************************************************/
2396 :
2397 422 : PDFDataset::PDFDataset(PDFDataset *poParentDSIn, int nXSize, int nYSize)
2398 422 : : m_bIsOvrDS(poParentDSIn != nullptr),
2399 : #ifdef HAVE_PDFIUM
2400 422 : m_poDocPdfium(poParentDSIn ? poParentDSIn->m_poDocPdfium : nullptr),
2401 422 : m_poPagePdfium(poParentDSIn ? poParentDSIn->m_poPagePdfium : nullptr),
2402 : #endif
2403 1266 : m_bSetStyle(CPLTestBool(CPLGetConfigOption("OGR_PDF_SET_STYLE", "YES")))
2404 : {
2405 422 : m_oSRS.SetAxisMappingStrategy(OAMS_TRADITIONAL_GIS_ORDER);
2406 422 : nRasterXSize = nXSize;
2407 422 : nRasterYSize = nYSize;
2408 422 : if (poParentDSIn)
2409 2 : m_bUseLib = poParentDSIn->m_bUseLib;
2410 :
2411 422 : InitMapOperators();
2412 422 : }
2413 :
2414 : /************************************************************************/
2415 : /* IBuildOverviews() */
2416 : /************************************************************************/
2417 :
2418 2 : CPLErr PDFDataset::IBuildOverviews(const char *pszResampling, int nOverviews,
2419 : const int *panOverviewList, int nListBands,
2420 : const int *panBandList,
2421 : GDALProgressFunc pfnProgress,
2422 : void *pProgressData,
2423 : CSLConstList papszOptions)
2424 :
2425 : {
2426 : /* -------------------------------------------------------------------- */
2427 : /* In order for building external overviews to work properly we */
2428 : /* discard any concept of internal overviews when the user */
2429 : /* first requests to build external overviews. */
2430 : /* -------------------------------------------------------------------- */
2431 2 : if (!m_apoOvrDS.empty())
2432 : {
2433 2 : m_apoOvrDSBackup = std::move(m_apoOvrDS);
2434 2 : m_apoOvrDS.clear();
2435 : }
2436 :
2437 : // Prevents InitOverviews() to run
2438 2 : m_apoOvrDSBackup.emplace_back(nullptr);
2439 2 : const CPLErr eErr = GDALPamDataset::IBuildOverviews(
2440 : pszResampling, nOverviews, panOverviewList, nListBands, panBandList,
2441 : pfnProgress, pProgressData, papszOptions);
2442 2 : m_apoOvrDSBackup.pop_back();
2443 2 : return eErr;
2444 : }
2445 :
2446 : /************************************************************************/
2447 : /* PDFFreeDoc() */
2448 : /************************************************************************/
2449 :
2450 : #ifdef HAVE_POPPLER
2451 192 : static void PDFFreeDoc(PDFDoc *poDoc)
2452 : {
2453 192 : if (poDoc)
2454 : {
2455 : /* hack to avoid potential cross heap issues on Win32 */
2456 : /* str is the VSIPDFFileStream object passed in the constructor of
2457 : * PDFDoc */
2458 : // NOTE: This is potentially very dangerous. See comment in
2459 : // VSIPDFFileStream::FillBuffer() */
2460 192 : delete poDoc->str;
2461 192 : poDoc->str = nullptr;
2462 :
2463 192 : delete poDoc;
2464 : }
2465 192 : }
2466 : #endif
2467 :
2468 : /************************************************************************/
2469 : /* GetCatalog() */
2470 : /************************************************************************/
2471 :
2472 1329 : GDALPDFObject *PDFDataset::GetCatalog()
2473 : {
2474 1329 : if (m_poCatalogObject)
2475 909 : return m_poCatalogObject;
2476 :
2477 : #ifdef HAVE_POPPLER
2478 420 : if (m_bUseLib.test(PDFLIB_POPPLER) && m_poDocPoppler)
2479 : {
2480 : m_poCatalogObjectPoppler =
2481 189 : std::make_unique<Object>(m_poDocPoppler->getXRef()->getCatalog());
2482 189 : if (!m_poCatalogObjectPoppler->isNull())
2483 189 : m_poCatalogObject =
2484 189 : new GDALPDFObjectPoppler(m_poCatalogObjectPoppler.get(), FALSE);
2485 : }
2486 : #endif
2487 :
2488 : #ifdef HAVE_PODOFO
2489 : if (m_bUseLib.test(PDFLIB_PODOFO) && m_poDocPodofo)
2490 : {
2491 : int nCatalogNum = 0;
2492 : int nCatalogGen = 0;
2493 : VSILFILE *fp = VSIFOpenL(m_osFilename.c_str(), "rb");
2494 : if (fp != nullptr)
2495 : {
2496 : GDALPDFUpdateWriter oWriter(fp);
2497 : if (oWriter.ParseTrailerAndXRef())
2498 : {
2499 : nCatalogNum = oWriter.GetCatalogNum().toInt();
2500 : nCatalogGen = oWriter.GetCatalogGen();
2501 : }
2502 : oWriter.Close();
2503 : }
2504 :
2505 : PoDoFo::PdfObject *poCatalogPodofo =
2506 : m_poDocPodofo->GetObjects().GetObject(
2507 : PoDoFo::PdfReference(nCatalogNum, nCatalogGen));
2508 : if (poCatalogPodofo)
2509 : m_poCatalogObject = new GDALPDFObjectPodofo(
2510 : poCatalogPodofo, m_poDocPodofo->GetObjects());
2511 : }
2512 : #endif
2513 :
2514 : #ifdef HAVE_PDFIUM
2515 420 : if (m_bUseLib.test(PDFLIB_PDFIUM) && m_poDocPdfium)
2516 : {
2517 231 : const CPDF_Dictionary *catalog = m_poDocPdfium->doc->GetRoot();
2518 231 : if (catalog)
2519 231 : m_poCatalogObject =
2520 : // coverity is confused by WrapRetain(), believing that multiple
2521 : // smart pointers manage the same raw pointer. Which is actually
2522 : // true, but a RetainPtr holds a reference counted object. It is
2523 : // thus safe to have several RetainPtr holding it.
2524 : // coverity[multiple_init_smart_ptr]
2525 231 : GDALPDFObjectPdfium::Build(pdfium::WrapRetain(catalog));
2526 : }
2527 : #endif // ~ HAVE_PDFIUM
2528 :
2529 420 : return m_poCatalogObject;
2530 : }
2531 :
2532 : /************************************************************************/
2533 : /* ~PDFDataset() */
2534 : /************************************************************************/
2535 :
2536 844 : PDFDataset::~PDFDataset()
2537 : {
2538 : #ifdef HAVE_PDFIUM
2539 422 : m_apoOvrDS.clear();
2540 422 : m_apoOvrDSBackup.clear();
2541 : #endif
2542 :
2543 422 : CPLFree(m_pabyCachedData);
2544 422 : m_pabyCachedData = nullptr;
2545 :
2546 422 : delete m_poNeatLine;
2547 422 : m_poNeatLine = nullptr;
2548 :
2549 : /* Collect data necessary to update */
2550 422 : int nNum = 0;
2551 422 : int nGen = 0;
2552 422 : GDALPDFDictionaryRW *poPageDictCopy = nullptr;
2553 422 : GDALPDFDictionaryRW *poCatalogDictCopy = nullptr;
2554 422 : if (m_poPageObj)
2555 : {
2556 420 : nNum = m_poPageObj->GetRefNum().toInt();
2557 420 : nGen = m_poPageObj->GetRefGen();
2558 866 : if (eAccess == GA_Update &&
2559 26 : (m_bProjDirty || m_bNeatLineDirty || m_bInfoDirty || m_bXMPDirty) &&
2560 472 : nNum != 0 && m_poPageObj != nullptr &&
2561 26 : m_poPageObj->GetType() == PDFObjectType_Dictionary)
2562 : {
2563 26 : poPageDictCopy = m_poPageObj->GetDictionary()->Clone();
2564 :
2565 26 : if (m_bXMPDirty)
2566 : {
2567 : /* We need the catalog because it points to the XMP Metadata
2568 : * object */
2569 6 : GetCatalog();
2570 12 : if (m_poCatalogObject &&
2571 6 : m_poCatalogObject->GetType() == PDFObjectType_Dictionary)
2572 : poCatalogDictCopy =
2573 6 : m_poCatalogObject->GetDictionary()->Clone();
2574 : }
2575 : }
2576 : }
2577 :
2578 : /* Close document (and file descriptor) to be able to open it */
2579 : /* in read-write mode afterwards */
2580 422 : delete m_poPageObj;
2581 422 : m_poPageObj = nullptr;
2582 422 : delete m_poCatalogObject;
2583 422 : m_poCatalogObject = nullptr;
2584 : #ifdef HAVE_POPPLER
2585 422 : if (m_bUseLib.test(PDFLIB_POPPLER))
2586 : {
2587 189 : m_poCatalogObjectPoppler.reset();
2588 189 : PDFFreeDoc(m_poDocPoppler);
2589 : }
2590 422 : m_poDocPoppler = nullptr;
2591 : #endif
2592 : #ifdef HAVE_PODOFO
2593 : if (m_bUseLib.test(PDFLIB_PODOFO))
2594 : {
2595 : delete m_poDocPodofo;
2596 : }
2597 : m_poDocPodofo = nullptr;
2598 : #endif
2599 : #ifdef HAVE_PDFIUM
2600 422 : if (!m_bIsOvrDS)
2601 : {
2602 418 : if (m_bUseLib.test(PDFLIB_PDFIUM))
2603 : {
2604 231 : UnloadPdfiumDocumentPage(&m_poDocPdfium, &m_poPagePdfium);
2605 : }
2606 : }
2607 422 : m_poDocPdfium = nullptr;
2608 422 : m_poPagePdfium = nullptr;
2609 : #endif // ~ HAVE_PDFIUM
2610 :
2611 : /* Now do the update */
2612 422 : if (poPageDictCopy)
2613 : {
2614 26 : VSILFILE *fp = VSIFOpenL(m_osFilename, "rb+");
2615 26 : if (fp != nullptr)
2616 : {
2617 52 : GDALPDFUpdateWriter oWriter(fp);
2618 26 : if (oWriter.ParseTrailerAndXRef())
2619 : {
2620 26 : if ((m_bProjDirty || m_bNeatLineDirty) &&
2621 : poPageDictCopy != nullptr)
2622 14 : oWriter.UpdateProj(this, m_dfDPI, poPageDictCopy,
2623 28 : GDALPDFObjectNum(nNum), nGen);
2624 :
2625 26 : if (m_bInfoDirty)
2626 6 : oWriter.UpdateInfo(this);
2627 :
2628 26 : if (m_bXMPDirty && poCatalogDictCopy != nullptr)
2629 6 : oWriter.UpdateXMP(this, poCatalogDictCopy);
2630 : }
2631 26 : oWriter.Close();
2632 : }
2633 : else
2634 : {
2635 0 : CPLError(CE_Failure, CPLE_AppDefined,
2636 : "Cannot open %s in update mode", m_osFilename.c_str());
2637 : }
2638 : }
2639 422 : delete poPageDictCopy;
2640 422 : poPageDictCopy = nullptr;
2641 422 : delete poCatalogDictCopy;
2642 422 : poCatalogDictCopy = nullptr;
2643 :
2644 422 : if (m_nGCPCount > 0)
2645 : {
2646 10 : GDALDeinitGCPs(m_nGCPCount, m_pasGCPList);
2647 10 : CPLFree(m_pasGCPList);
2648 10 : m_pasGCPList = nullptr;
2649 10 : m_nGCPCount = 0;
2650 : }
2651 :
2652 422 : CleanupIntermediateResources();
2653 :
2654 422 : m_apoLayers.clear();
2655 :
2656 : // Do that only after having destroyed Poppler objects
2657 422 : m_fp.reset();
2658 844 : }
2659 :
2660 : /************************************************************************/
2661 : /* IRasterIO() */
2662 : /************************************************************************/
2663 :
2664 1674 : CPLErr PDFDataset::IRasterIO(GDALRWFlag eRWFlag, int nXOff, int nYOff,
2665 : int nXSize, int nYSize, void *pData, int nBufXSize,
2666 : int nBufYSize, GDALDataType eBufType,
2667 : int nBandCount, BANDMAP_TYPE panBandMap,
2668 : GSpacing nPixelSpace, GSpacing nLineSpace,
2669 : GSpacing nBandSpace,
2670 : GDALRasterIOExtraArg *psExtraArg)
2671 : {
2672 : // Try to pass the request to the most appropriate overview dataset.
2673 1674 : if (nBufXSize < nXSize && nBufYSize < nYSize)
2674 : {
2675 0 : int bTried = FALSE;
2676 0 : const CPLErr eErr = TryOverviewRasterIO(
2677 : eRWFlag, nXOff, nYOff, nXSize, nYSize, pData, nBufXSize, nBufYSize,
2678 : eBufType, nBandCount, panBandMap, nPixelSpace, nLineSpace,
2679 : nBandSpace, psExtraArg, &bTried);
2680 0 : if (bTried)
2681 0 : return eErr;
2682 : }
2683 :
2684 : int nBandBlockXSize, nBandBlockYSize;
2685 1674 : int bReadPixels = FALSE;
2686 1674 : GetRasterBand(1)->GetBlockSize(&nBandBlockXSize, &nBandBlockYSize);
2687 3348 : if (m_aiTiles.empty() && eRWFlag == GF_Read && nXSize == nBufXSize &&
2688 1674 : nYSize == nBufYSize &&
2689 1674 : (nBufXSize > nBandBlockXSize || nBufYSize > nBandBlockYSize) &&
2690 3350 : eBufType == GDT_Byte && nBandCount == nBands &&
2691 2 : (nBands >= 3 && panBandMap[0] == 1 && panBandMap[1] == 2 &&
2692 2 : panBandMap[2] == 3 && (nBands == 3 || panBandMap[3] == 4)))
2693 : {
2694 2 : bReadPixels = TRUE;
2695 : #ifdef HAVE_PODOFO
2696 : if (m_bUseLib.test(PDFLIB_PODOFO) && nBands == 4)
2697 : {
2698 : bReadPixels = FALSE;
2699 : }
2700 : #endif
2701 : }
2702 :
2703 1674 : if (bReadPixels)
2704 2 : return ReadPixels(nXOff, nYOff, nXSize, nYSize, nPixelSpace, nLineSpace,
2705 2 : nBandSpace, static_cast<GByte *>(pData));
2706 :
2707 1672 : if (nBufXSize != nXSize || nBufYSize != nYSize || eBufType != GDT_Byte)
2708 : {
2709 0 : m_bCacheBlocksForOtherBands = true;
2710 : }
2711 1672 : CPLErr eErr = GDALPamDataset::IRasterIO(
2712 : eRWFlag, nXOff, nYOff, nXSize, nYSize, pData, nBufXSize, nBufYSize,
2713 : eBufType, nBandCount, panBandMap, nPixelSpace, nLineSpace, nBandSpace,
2714 : psExtraArg);
2715 1672 : m_bCacheBlocksForOtherBands = false;
2716 1672 : return eErr;
2717 : }
2718 :
2719 : /************************************************************************/
2720 : /* IRasterIO() */
2721 : /************************************************************************/
2722 :
2723 43375 : CPLErr PDFRasterBand::IRasterIO(GDALRWFlag eRWFlag, int nXOff, int nYOff,
2724 : int nXSize, int nYSize, void *pData,
2725 : int nBufXSize, int nBufYSize,
2726 : GDALDataType eBufType, GSpacing nPixelSpace,
2727 : GSpacing nLineSpace,
2728 : GDALRasterIOExtraArg *psExtraArg)
2729 : {
2730 43375 : PDFDataset *poGDS = cpl::down_cast<PDFDataset *>(poDS);
2731 :
2732 : // Try to pass the request to the most appropriate overview dataset.
2733 43375 : if (nBufXSize < nXSize && nBufYSize < nYSize)
2734 : {
2735 0 : int bTried = FALSE;
2736 0 : const CPLErr eErr = TryOverviewRasterIO(
2737 : eRWFlag, nXOff, nYOff, nXSize, nYSize, pData, nBufXSize, nBufYSize,
2738 : eBufType, nPixelSpace, nLineSpace, psExtraArg, &bTried);
2739 0 : if (bTried)
2740 0 : return eErr;
2741 : }
2742 :
2743 43375 : if (nBufXSize != nXSize || nBufYSize != nYSize || eBufType != GDT_Byte)
2744 : {
2745 38337 : poGDS->m_bCacheBlocksForOtherBands = true;
2746 : }
2747 43375 : CPLErr eErr = GDALPamRasterBand::IRasterIO(
2748 : eRWFlag, nXOff, nYOff, nXSize, nYSize, pData, nBufXSize, nBufYSize,
2749 : eBufType, nPixelSpace, nLineSpace, psExtraArg);
2750 43375 : poGDS->m_bCacheBlocksForOtherBands = false;
2751 43375 : return eErr;
2752 : }
2753 :
2754 : /************************************************************************/
2755 : /* PDFDatasetErrorFunction() */
2756 : /************************************************************************/
2757 :
2758 : #ifdef HAVE_POPPLER
2759 :
2760 2 : static void PDFDatasetErrorFunctionCommon(const CPLString &osError)
2761 : {
2762 2 : if (strcmp(osError.c_str(), "Incorrect password") == 0)
2763 2 : return;
2764 : /* Reported on newer USGS GeoPDF */
2765 0 : if (strcmp(osError.c_str(),
2766 0 : "Couldn't find group for reference to set OFF") == 0)
2767 : {
2768 0 : CPLDebug("PDF", "%s", osError.c_str());
2769 0 : return;
2770 : }
2771 :
2772 0 : CPLError(CE_Failure, CPLE_AppDefined, "%s", osError.c_str());
2773 : }
2774 :
2775 : static int g_nPopplerErrors = 0;
2776 : constexpr int MAX_POPPLER_ERRORS = 1000;
2777 :
2778 2 : static void PDFDatasetErrorFunction(ErrorCategory /* eErrCategory */,
2779 : Goffset nPos, const char *pszMsg)
2780 : {
2781 2 : if (g_nPopplerErrors >= MAX_POPPLER_ERRORS)
2782 : {
2783 : // If there are too many errors, then unregister ourselves and turn
2784 : // quiet error mode, as the error() function in poppler can spend
2785 : // significant time formatting an error message we won't emit...
2786 0 : setErrorCallback(nullptr);
2787 0 : globalParams->setErrQuiet(true);
2788 0 : return;
2789 : }
2790 :
2791 2 : g_nPopplerErrors++;
2792 4 : CPLString osError;
2793 :
2794 2 : if (nPos >= 0)
2795 : osError.Printf("Pos = " CPL_FRMT_GUIB ", ",
2796 0 : static_cast<GUIntBig>(nPos));
2797 2 : osError += pszMsg;
2798 2 : PDFDatasetErrorFunctionCommon(osError);
2799 : }
2800 : #endif
2801 :
2802 : /************************************************************************/
2803 : /* GDALPDFParseStreamContentOnlyDrawForm() */
2804 : /************************************************************************/
2805 :
2806 396 : static CPLString GDALPDFParseStreamContentOnlyDrawForm(const char *pszContent)
2807 : {
2808 792 : CPLString osToken;
2809 : char ch;
2810 396 : int nCurIdx = 0;
2811 792 : CPLString osCurrentForm;
2812 :
2813 : // CPLDebug("PDF", "content = %s", pszContent);
2814 :
2815 1282 : while ((ch = *pszContent) != '\0')
2816 : {
2817 1282 : if (ch == '%')
2818 : {
2819 : /* Skip comments until end-of-line */
2820 0 : while ((ch = *pszContent) != '\0')
2821 : {
2822 0 : if (ch == '\r' || ch == '\n')
2823 : break;
2824 0 : pszContent++;
2825 : }
2826 0 : if (ch == 0)
2827 0 : break;
2828 : }
2829 1282 : else if (ch == ' ' || ch == '\r' || ch == '\n')
2830 : {
2831 450 : if (!osToken.empty())
2832 : {
2833 450 : if (nCurIdx == 0 && osToken[0] == '/')
2834 : {
2835 54 : osCurrentForm = osToken.substr(1);
2836 54 : nCurIdx++;
2837 : }
2838 396 : else if (nCurIdx == 1 && osToken == "Do")
2839 : {
2840 0 : nCurIdx++;
2841 : }
2842 : else
2843 : {
2844 396 : return "";
2845 : }
2846 : }
2847 54 : osToken = "";
2848 : }
2849 : else
2850 832 : osToken += ch;
2851 886 : pszContent++;
2852 : }
2853 :
2854 0 : return osCurrentForm;
2855 : }
2856 :
2857 : /************************************************************************/
2858 : /* GDALPDFParseStreamContent() */
2859 : /************************************************************************/
2860 :
2861 : typedef enum
2862 : {
2863 : STATE_INIT,
2864 : STATE_AFTER_q,
2865 : STATE_AFTER_cm,
2866 : STATE_AFTER_Do
2867 : } PDFStreamState;
2868 :
2869 : /* This parser is reduced to understanding sequences that draw rasters, such as
2870 : :
2871 : q
2872 : scaleX 0 0 scaleY translateX translateY cm
2873 : /ImXXX Do
2874 : Q
2875 :
2876 : All other sequences will abort the parsing.
2877 :
2878 : Returns TRUE if the stream only contains images.
2879 : */
2880 :
2881 396 : static int GDALPDFParseStreamContent(const char *pszContent,
2882 : GDALPDFDictionary *poXObjectDict,
2883 : double *pdfDPI, int *pbDPISet,
2884 : int *pnBands,
2885 : std::vector<GDALPDFTileDesc> &asTiles,
2886 : int bAcceptRotationTerms)
2887 : {
2888 792 : CPLString osToken;
2889 : char ch;
2890 396 : PDFStreamState nState = STATE_INIT;
2891 396 : int nCurIdx = 0;
2892 : double adfVals[6];
2893 792 : CPLString osCurrentImage;
2894 :
2895 396 : double dfDPI = DEFAULT_DPI;
2896 396 : *pbDPISet = FALSE;
2897 :
2898 24031 : while ((ch = *pszContent) != '\0')
2899 : {
2900 23720 : if (ch == '%')
2901 : {
2902 : /* Skip comments until end-of-line */
2903 0 : while ((ch = *pszContent) != '\0')
2904 : {
2905 0 : if (ch == '\r' || ch == '\n')
2906 : break;
2907 0 : pszContent++;
2908 : }
2909 0 : if (ch == 0)
2910 0 : break;
2911 : }
2912 23720 : else if (ch == ' ' || ch == '\t' || ch == '\r' || ch == '\n')
2913 : {
2914 6916 : if (!osToken.empty())
2915 : {
2916 6916 : if (nState == STATE_INIT)
2917 : {
2918 706 : if (osToken == "q")
2919 : {
2920 621 : nState = STATE_AFTER_q;
2921 621 : nCurIdx = 0;
2922 : }
2923 85 : else if (osToken != "Q")
2924 85 : return FALSE;
2925 : }
2926 6210 : else if (nState == STATE_AFTER_q)
2927 : {
2928 4347 : if (osToken == "q")
2929 : {
2930 : // ignore
2931 : }
2932 4347 : else if (nCurIdx < 6)
2933 : {
2934 3726 : adfVals[nCurIdx++] = CPLAtof(osToken);
2935 : }
2936 621 : else if (nCurIdx == 6 && osToken == "cm")
2937 : {
2938 621 : nState = STATE_AFTER_cm;
2939 621 : nCurIdx = 0;
2940 : }
2941 : else
2942 0 : return FALSE;
2943 : }
2944 1863 : else if (nState == STATE_AFTER_cm)
2945 : {
2946 1242 : if (nCurIdx == 0 && osToken[0] == '/')
2947 : {
2948 621 : osCurrentImage = osToken.substr(1);
2949 : }
2950 621 : else if (osToken == "Do")
2951 : {
2952 621 : nState = STATE_AFTER_Do;
2953 : }
2954 : else
2955 0 : return FALSE;
2956 : }
2957 621 : else if (nState == STATE_AFTER_Do)
2958 : {
2959 621 : if (osToken == "Q")
2960 : {
2961 : GDALPDFObject *poImage =
2962 621 : poXObjectDict->Get(osCurrentImage);
2963 1242 : if (poImage != nullptr &&
2964 621 : poImage->GetType() == PDFObjectType_Dictionary)
2965 : {
2966 : GDALPDFTileDesc sTile;
2967 : GDALPDFDictionary *poImageDict =
2968 621 : poImage->GetDictionary();
2969 621 : GDALPDFObject *poWidth = poImageDict->Get("Width");
2970 : GDALPDFObject *poHeight =
2971 621 : poImageDict->Get("Height");
2972 : GDALPDFObject *poColorSpace =
2973 621 : poImageDict->Get("ColorSpace");
2974 621 : GDALPDFObject *poSMask = poImageDict->Get("SMask");
2975 1242 : if (poColorSpace &&
2976 621 : poColorSpace->GetType() == PDFObjectType_Name)
2977 : {
2978 615 : if (poColorSpace->GetName() == "DeviceRGB")
2979 : {
2980 221 : sTile.nBands = 3;
2981 221 : if (*pnBands < 3)
2982 47 : *pnBands = 3;
2983 : }
2984 394 : else if (poColorSpace->GetName() ==
2985 : "DeviceGray")
2986 : {
2987 394 : sTile.nBands = 1;
2988 394 : if (*pnBands < 1)
2989 286 : *pnBands = 1;
2990 : }
2991 : else
2992 0 : sTile.nBands = 0;
2993 : }
2994 621 : if (poSMask != nullptr)
2995 190 : *pnBands = 4;
2996 :
2997 621 : if (poWidth && poHeight &&
2998 0 : ((bAcceptRotationTerms &&
2999 621 : adfVals[1] == -adfVals[2]) ||
3000 621 : (!bAcceptRotationTerms && adfVals[1] == 0.0 &&
3001 621 : adfVals[2] == 0.0)))
3002 : {
3003 621 : double dfWidth = Get(poWidth);
3004 621 : double dfHeight = Get(poHeight);
3005 621 : double dfScaleX = adfVals[0];
3006 621 : double dfScaleY = adfVals[3];
3007 621 : if (dfWidth > 0 && dfHeight > 0 &&
3008 621 : dfScaleX > 0 && dfScaleY > 0 &&
3009 621 : dfWidth / dfScaleX * DEFAULT_DPI <
3010 621 : INT_MAX &&
3011 621 : dfHeight / dfScaleY * DEFAULT_DPI < INT_MAX)
3012 : {
3013 1242 : double dfDPI_X = ROUND_IF_CLOSE(
3014 621 : dfWidth / dfScaleX * DEFAULT_DPI, 1e-3);
3015 1242 : double dfDPI_Y = ROUND_IF_CLOSE(
3016 621 : dfHeight / dfScaleY * DEFAULT_DPI,
3017 : 1e-3);
3018 : // CPLDebug("PDF", "Image %s, width = %.16g,
3019 : // height = %.16g, scaleX = %.16g, scaleY =
3020 : // %.16g --> DPI_X = %.16g, DPI_Y = %.16g",
3021 : // osCurrentImage.c_str(),
3022 : // dfWidth, dfHeight,
3023 : // dfScaleX, dfScaleY,
3024 : // dfDPI_X, dfDPI_Y);
3025 621 : if (dfDPI_X > dfDPI)
3026 70 : dfDPI = dfDPI_X;
3027 621 : if (dfDPI_Y > dfDPI)
3028 0 : dfDPI = dfDPI_Y;
3029 :
3030 621 : memcpy(&(sTile.adfCM), adfVals,
3031 : 6 * sizeof(double));
3032 621 : sTile.poImage = poImage;
3033 621 : sTile.dfWidth = dfWidth;
3034 621 : sTile.dfHeight = dfHeight;
3035 621 : asTiles.push_back(sTile);
3036 :
3037 621 : *pbDPISet = TRUE;
3038 621 : *pdfDPI = dfDPI;
3039 : }
3040 : }
3041 : }
3042 621 : nState = STATE_INIT;
3043 : }
3044 : else
3045 0 : return FALSE;
3046 : }
3047 : }
3048 6831 : osToken = "";
3049 : }
3050 : else
3051 16804 : osToken += ch;
3052 23635 : pszContent++;
3053 : }
3054 :
3055 311 : return TRUE;
3056 : }
3057 :
3058 : /************************************************************************/
3059 : /* CheckTiledRaster() */
3060 : /************************************************************************/
3061 :
3062 339 : int PDFDataset::CheckTiledRaster()
3063 : {
3064 : size_t i;
3065 339 : int l_nBlockXSize = 0;
3066 339 : int l_nBlockYSize = 0;
3067 339 : const double dfUserUnit = m_dfDPI * USER_UNIT_IN_INCH;
3068 :
3069 : /* First pass : check that all tiles have same DPI, */
3070 : /* are contained entirely in the raster size, */
3071 : /* and determine the block size */
3072 954 : for (i = 0; i < m_asTiles.size(); i++)
3073 : {
3074 621 : double dfDrawWidth = m_asTiles[i].adfCM[0] * dfUserUnit;
3075 621 : double dfDrawHeight = m_asTiles[i].adfCM[3] * dfUserUnit;
3076 621 : double dfX = m_asTiles[i].adfCM[4] * dfUserUnit;
3077 621 : double dfY = m_asTiles[i].adfCM[5] * dfUserUnit;
3078 621 : int nX = static_cast<int>(dfX + 0.1);
3079 621 : int nY = static_cast<int>(dfY + 0.1);
3080 621 : int nWidth = static_cast<int>(m_asTiles[i].dfWidth + 1e-8);
3081 621 : int nHeight = static_cast<int>(m_asTiles[i].dfHeight + 1e-8);
3082 :
3083 621 : GDALPDFDictionary *poImageDict = m_asTiles[i].poImage->GetDictionary();
3084 : GDALPDFObject *poBitsPerComponent =
3085 621 : poImageDict->Get("BitsPerComponent");
3086 621 : GDALPDFObject *poColorSpace = poImageDict->Get("ColorSpace");
3087 621 : GDALPDFObject *poFilter = poImageDict->Get("Filter");
3088 :
3089 : /* Podofo cannot uncompress JPEG2000 streams */
3090 621 : if (m_bUseLib.test(PDFLIB_PODOFO) && poFilter != nullptr &&
3091 621 : poFilter->GetType() == PDFObjectType_Name &&
3092 0 : poFilter->GetName() == "JPXDecode")
3093 : {
3094 0 : CPLDebug("PDF", "Tile %d : Incompatible image for tiled reading",
3095 : static_cast<int>(i));
3096 0 : return FALSE;
3097 : }
3098 :
3099 621 : if (poBitsPerComponent == nullptr || Get(poBitsPerComponent) != 8 ||
3100 621 : poColorSpace == nullptr ||
3101 2251 : poColorSpace->GetType() != PDFObjectType_Name ||
3102 1009 : (poColorSpace->GetName() != "DeviceRGB" &&
3103 394 : poColorSpace->GetName() != "DeviceGray"))
3104 : {
3105 6 : CPLDebug("PDF", "Tile %d : Incompatible image for tiled reading",
3106 : static_cast<int>(i));
3107 6 : return FALSE;
3108 : }
3109 :
3110 615 : if (fabs(dfDrawWidth - m_asTiles[i].dfWidth) > 1e-2 ||
3111 615 : fabs(dfDrawHeight - m_asTiles[i].dfHeight) > 1e-2 ||
3112 615 : fabs(nWidth - m_asTiles[i].dfWidth) > 1e-8 ||
3113 615 : fabs(nHeight - m_asTiles[i].dfHeight) > 1e-8 ||
3114 615 : fabs(nX - dfX) > 1e-1 || fabs(nY - dfY) > 1e-1 || nX < 0 ||
3115 1230 : nY < 0 || nX + nWidth > nRasterXSize || nY >= nRasterYSize)
3116 : {
3117 0 : CPLDebug("PDF", "Tile %d : %f %f %f %f %f %f", static_cast<int>(i),
3118 0 : dfX, dfY, dfDrawWidth, dfDrawHeight, m_asTiles[i].dfWidth,
3119 0 : m_asTiles[i].dfHeight);
3120 0 : return FALSE;
3121 : }
3122 615 : if (l_nBlockXSize == 0 && l_nBlockYSize == 0 && nX == 0 && nY != 0)
3123 : {
3124 18 : l_nBlockXSize = nWidth;
3125 18 : l_nBlockYSize = nHeight;
3126 : }
3127 : }
3128 333 : if (l_nBlockXSize <= 0 || l_nBlockYSize <= 0 || l_nBlockXSize > 2048 ||
3129 : l_nBlockYSize > 2048)
3130 315 : return FALSE;
3131 :
3132 18 : int nXBlocks = DIV_ROUND_UP(nRasterXSize, l_nBlockXSize);
3133 18 : int nYBlocks = DIV_ROUND_UP(nRasterYSize, l_nBlockYSize);
3134 :
3135 : /* Second pass to determine that all tiles are properly aligned on block
3136 : * size */
3137 318 : for (i = 0; i < m_asTiles.size(); i++)
3138 : {
3139 300 : double dfX = m_asTiles[i].adfCM[4] * dfUserUnit;
3140 300 : double dfY = m_asTiles[i].adfCM[5] * dfUserUnit;
3141 300 : int nX = static_cast<int>(dfX + 0.1);
3142 300 : int nY = static_cast<int>(dfY + 0.1);
3143 300 : int nWidth = static_cast<int>(m_asTiles[i].dfWidth + 1e-8);
3144 300 : int nHeight = static_cast<int>(m_asTiles[i].dfHeight + 1e-8);
3145 300 : int bOK = TRUE;
3146 300 : int nBlockXOff = nX / l_nBlockXSize;
3147 300 : if ((nX % l_nBlockXSize) != 0)
3148 0 : bOK = FALSE;
3149 300 : if (nBlockXOff < nXBlocks - 1 && nWidth != l_nBlockXSize)
3150 0 : bOK = FALSE;
3151 300 : if (nBlockXOff == nXBlocks - 1 && nX + nWidth != nRasterXSize)
3152 0 : bOK = FALSE;
3153 :
3154 300 : if (nY > 0 && nHeight != l_nBlockYSize)
3155 0 : bOK = FALSE;
3156 300 : if (nY == 0 && nHeight != nRasterYSize - (nYBlocks - 1) * l_nBlockYSize)
3157 0 : bOK = FALSE;
3158 :
3159 300 : if (!bOK)
3160 : {
3161 0 : CPLDebug("PDF", "Tile %d : %d %d %d %d", static_cast<int>(i), nX,
3162 : nY, nWidth, nHeight);
3163 0 : return FALSE;
3164 : }
3165 : }
3166 :
3167 : /* Third pass to set the aiTiles array */
3168 18 : m_aiTiles.resize(static_cast<size_t>(nXBlocks) * nYBlocks, -1);
3169 318 : for (i = 0; i < m_asTiles.size(); i++)
3170 : {
3171 300 : double dfX = m_asTiles[i].adfCM[4] * dfUserUnit;
3172 300 : double dfY = m_asTiles[i].adfCM[5] * dfUserUnit;
3173 300 : int nHeight = static_cast<int>(m_asTiles[i].dfHeight + 1e-8);
3174 300 : int nX = static_cast<int>(dfX + 0.1);
3175 300 : int nY = nRasterYSize - (static_cast<int>(dfY + 0.1) + nHeight);
3176 300 : int nBlockXOff = nX / l_nBlockXSize;
3177 300 : int nBlockYOff = nY / l_nBlockYSize;
3178 300 : m_aiTiles[nBlockYOff * nXBlocks + nBlockXOff] = static_cast<int>(i);
3179 : }
3180 :
3181 18 : this->m_nBlockXSize = l_nBlockXSize;
3182 18 : this->m_nBlockYSize = l_nBlockYSize;
3183 :
3184 18 : return TRUE;
3185 : }
3186 :
3187 : /************************************************************************/
3188 : /* GuessDPI() */
3189 : /************************************************************************/
3190 :
3191 420 : void PDFDataset::GuessDPI(GDALPDFDictionary *poPageDict, int *pnBands)
3192 : {
3193 420 : const char *pszDPI = GetOption(papszOpenOptions, "DPI", nullptr);
3194 420 : if (pszDPI != nullptr)
3195 : {
3196 : // coverity[tainted_data]
3197 4 : m_dfDPI = CPLAtof(pszDPI);
3198 : }
3199 : else
3200 : {
3201 : /* Try to get a better value from the images that are drawn */
3202 : /* Very simplistic logic. Will only work for raster only PDF */
3203 :
3204 416 : GDALPDFObject *poContents = poPageDict->Get("Contents");
3205 830 : if (poContents != nullptr &&
3206 414 : poContents->GetType() == PDFObjectType_Array)
3207 : {
3208 1 : GDALPDFArray *poContentsArray = poContents->GetArray();
3209 1 : if (poContentsArray->GetLength() == 1)
3210 : {
3211 1 : poContents = poContentsArray->Get(0);
3212 : }
3213 : }
3214 :
3215 : GDALPDFObject *poXObject =
3216 416 : poPageDict->LookupObject("Resources.XObject");
3217 830 : if (poContents != nullptr &&
3218 414 : poContents->GetType() == PDFObjectType_Dictionary &&
3219 830 : poXObject != nullptr &&
3220 398 : poXObject->GetType() == PDFObjectType_Dictionary)
3221 : {
3222 398 : GDALPDFDictionary *poXObjectDict = poXObject->GetDictionary();
3223 398 : GDALPDFDictionary *poContentDict = poXObjectDict;
3224 398 : GDALPDFStream *poPageStream = poContents->GetStream();
3225 398 : if (poPageStream != nullptr)
3226 : {
3227 396 : char *pszContent = nullptr;
3228 396 : const int64_t MAX_LENGTH = 10 * 1000 * 1000;
3229 396 : int64_t nLength = poPageStream->GetLength(MAX_LENGTH);
3230 396 : int bResetTiles = FALSE;
3231 396 : double dfScaleDPI = 1.0;
3232 :
3233 396 : if (nLength < MAX_LENGTH)
3234 : {
3235 792 : CPLString osForm;
3236 396 : pszContent = poPageStream->GetBytes();
3237 396 : if (pszContent != nullptr)
3238 : {
3239 : #ifdef DEBUG
3240 : const char *pszDumpStream =
3241 396 : CPLGetConfigOption("PDF_DUMP_STREAM", nullptr);
3242 396 : if (pszDumpStream != nullptr)
3243 : {
3244 0 : VSILFILE *fpDump = VSIFOpenL(pszDumpStream, "wb");
3245 0 : if (fpDump)
3246 : {
3247 0 : VSIFWriteL(pszContent, 1,
3248 : static_cast<int>(nLength), fpDump);
3249 0 : VSIFCloseL(fpDump);
3250 : }
3251 : }
3252 : #endif // DEBUG
3253 : osForm =
3254 396 : GDALPDFParseStreamContentOnlyDrawForm(pszContent);
3255 396 : if (osForm.empty())
3256 : {
3257 : /* Special case for USGS Topo PDF, like
3258 : * CA_Hollywood_20090811_OM_geo.pdf */
3259 : const char *pszOGCDo =
3260 396 : strstr(pszContent, " /XO1 Do");
3261 396 : if (pszOGCDo)
3262 : {
3263 0 : const char *pszcm = strstr(pszContent, " cm ");
3264 0 : if (pszcm != nullptr && pszcm < pszOGCDo)
3265 : {
3266 : const char *pszNextcm =
3267 0 : strstr(pszcm + 2, "cm");
3268 0 : if (pszNextcm == nullptr ||
3269 : pszNextcm > pszOGCDo)
3270 : {
3271 0 : const char *pszIter = pszcm;
3272 0 : while (pszIter > pszContent)
3273 : {
3274 0 : if ((*pszIter >= '0' &&
3275 0 : *pszIter <= '9') ||
3276 0 : *pszIter == '-' ||
3277 0 : *pszIter == '.' ||
3278 0 : *pszIter == ' ')
3279 0 : pszIter--;
3280 : else
3281 : {
3282 0 : pszIter++;
3283 0 : break;
3284 : }
3285 : }
3286 0 : CPLString oscm(pszIter);
3287 0 : oscm.resize(pszcm - pszIter);
3288 : char **papszTokens =
3289 0 : CSLTokenizeString(oscm);
3290 0 : double dfScaleX = -1.0;
3291 0 : double dfScaleY = -2.0;
3292 0 : if (CSLCount(papszTokens) == 6)
3293 : {
3294 0 : dfScaleX = CPLAtof(papszTokens[0]);
3295 0 : dfScaleY = CPLAtof(papszTokens[3]);
3296 : }
3297 0 : CSLDestroy(papszTokens);
3298 0 : if (dfScaleX == dfScaleY &&
3299 : dfScaleX > 0.0)
3300 : {
3301 0 : osForm = "XO1";
3302 0 : bResetTiles = TRUE;
3303 0 : dfScaleDPI = 1.0 / dfScaleX;
3304 : }
3305 0 : }
3306 : }
3307 : else
3308 : {
3309 0 : osForm = "XO1";
3310 0 : bResetTiles = TRUE;
3311 : }
3312 : }
3313 : /* Special case for USGS Topo PDF, like
3314 : * CA_Sacramento_East_20120308_TM_geo.pdf */
3315 : else
3316 : {
3317 : CPLString osOCG =
3318 792 : FindLayerOCG(poPageDict, "Orthoimage");
3319 396 : if (!osOCG.empty())
3320 : {
3321 0 : const char *pszBDCLookup = CPLSPrintf(
3322 : "/OC /%s BDC", osOCG.c_str());
3323 : const char *pszBDC =
3324 0 : strstr(pszContent, pszBDCLookup);
3325 0 : if (pszBDC != nullptr)
3326 : {
3327 0 : const char *pszIter =
3328 0 : pszBDC + strlen(pszBDCLookup);
3329 0 : while (*pszIter != '\0')
3330 : {
3331 0 : if (*pszIter == 13 ||
3332 0 : *pszIter == 10 ||
3333 0 : *pszIter == ' ' ||
3334 0 : *pszIter == 'q')
3335 0 : pszIter++;
3336 : else
3337 : break;
3338 : }
3339 0 : if (STARTS_WITH(pszIter,
3340 : "1 0 0 1 0 0 cm\n"))
3341 0 : pszIter +=
3342 : strlen("1 0 0 1 0 0 cm\n");
3343 0 : if (*pszIter == '/')
3344 : {
3345 0 : pszIter++;
3346 : const char *pszDo =
3347 0 : strstr(pszIter, " Do");
3348 0 : if (pszDo != nullptr)
3349 : {
3350 0 : osForm = pszIter;
3351 0 : osForm.resize(pszDo - pszIter);
3352 0 : bResetTiles = TRUE;
3353 : }
3354 : }
3355 : }
3356 : }
3357 : }
3358 : }
3359 : }
3360 :
3361 396 : if (!osForm.empty())
3362 : {
3363 0 : CPLFree(pszContent);
3364 0 : pszContent = nullptr;
3365 :
3366 0 : GDALPDFObject *poObjForm = poXObjectDict->Get(osForm);
3367 0 : if (poObjForm != nullptr &&
3368 0 : poObjForm->GetType() == PDFObjectType_Dictionary &&
3369 0 : (poPageStream = poObjForm->GetStream()) != nullptr)
3370 : {
3371 : GDALPDFDictionary *poObjFormDict =
3372 0 : poObjForm->GetDictionary();
3373 : GDALPDFObject *poSubtype =
3374 0 : poObjFormDict->Get("Subtype");
3375 0 : if (poSubtype != nullptr &&
3376 0 : poSubtype->GetType() == PDFObjectType_Name &&
3377 0 : poSubtype->GetName() == "Form")
3378 : {
3379 0 : nLength = poPageStream->GetLength(MAX_LENGTH);
3380 0 : if (nLength < MAX_LENGTH)
3381 : {
3382 0 : pszContent = poPageStream->GetBytes();
3383 :
3384 : GDALPDFObject *poXObject2 =
3385 0 : poObjFormDict->LookupObject(
3386 : "Resources.XObject");
3387 0 : if (poXObject2 != nullptr &&
3388 0 : poXObject2->GetType() ==
3389 : PDFObjectType_Dictionary)
3390 : poContentDict =
3391 0 : poXObject2->GetDictionary();
3392 : }
3393 : }
3394 : }
3395 : }
3396 : }
3397 :
3398 396 : if (pszContent != nullptr)
3399 : {
3400 396 : int bDPISet = FALSE;
3401 :
3402 396 : const char *pszContentToParse = pszContent;
3403 396 : if (bResetTiles)
3404 : {
3405 0 : while (*pszContentToParse != '\0')
3406 : {
3407 0 : if (*pszContentToParse == 13 ||
3408 0 : *pszContentToParse == 10 ||
3409 0 : *pszContentToParse == ' ' ||
3410 0 : (*pszContentToParse >= '0' &&
3411 0 : *pszContentToParse <= '9') ||
3412 0 : *pszContentToParse == '.' ||
3413 0 : *pszContentToParse == '-' ||
3414 0 : *pszContentToParse == 'l' ||
3415 0 : *pszContentToParse == 'm' ||
3416 0 : *pszContentToParse == 'n' ||
3417 0 : *pszContentToParse == 'W')
3418 0 : pszContentToParse++;
3419 : else
3420 : break;
3421 : }
3422 : }
3423 :
3424 396 : GDALPDFParseStreamContent(pszContentToParse, poContentDict,
3425 : &(m_dfDPI), &bDPISet, pnBands,
3426 396 : m_asTiles, bResetTiles);
3427 396 : CPLFree(pszContent);
3428 396 : if (bDPISet)
3429 : {
3430 339 : m_dfDPI *= dfScaleDPI;
3431 :
3432 339 : CPLDebug("PDF",
3433 : "DPI guessed from contents stream = %.16g",
3434 : m_dfDPI);
3435 339 : SetMetadataItem("DPI", CPLSPrintf("%.16g", m_dfDPI));
3436 339 : if (bResetTiles)
3437 0 : m_asTiles.resize(0);
3438 : }
3439 : else
3440 57 : m_asTiles.resize(0);
3441 : }
3442 : }
3443 : }
3444 :
3445 416 : GDALPDFObject *poUserUnit = nullptr;
3446 740 : if ((poUserUnit = poPageDict->Get("UserUnit")) != nullptr &&
3447 324 : (poUserUnit->GetType() == PDFObjectType_Int ||
3448 23 : poUserUnit->GetType() == PDFObjectType_Real))
3449 : {
3450 324 : m_dfDPI = ROUND_IF_CLOSE(Get(poUserUnit) * DEFAULT_DPI, 1e-5);
3451 324 : CPLDebug("PDF", "Found UserUnit in Page --> DPI = %.16g", m_dfDPI);
3452 324 : SetMetadataItem("DPI", CPLSPrintf("%.16g", m_dfDPI));
3453 : }
3454 : }
3455 :
3456 420 : if (m_dfDPI < 1e-2 || m_dfDPI > 7200)
3457 : {
3458 0 : CPLError(CE_Warning, CPLE_AppDefined,
3459 : "Invalid value for GDAL_PDF_DPI. Using default value instead");
3460 0 : m_dfDPI = GDAL_DEFAULT_DPI;
3461 : }
3462 420 : }
3463 :
3464 : /************************************************************************/
3465 : /* FindXMP() */
3466 : /************************************************************************/
3467 :
3468 0 : void PDFDataset::FindXMP(GDALPDFObject *poObj)
3469 : {
3470 0 : if (poObj->GetType() != PDFObjectType_Dictionary)
3471 0 : return;
3472 :
3473 0 : GDALPDFDictionary *poDict = poObj->GetDictionary();
3474 0 : GDALPDFObject *poType = poDict->Get("Type");
3475 0 : GDALPDFObject *poSubtype = poDict->Get("Subtype");
3476 0 : if (poType == nullptr || poType->GetType() != PDFObjectType_Name ||
3477 0 : poType->GetName() != "Metadata" || poSubtype == nullptr ||
3478 0 : poSubtype->GetType() != PDFObjectType_Name ||
3479 0 : poSubtype->GetName() != "XML")
3480 : {
3481 0 : return;
3482 : }
3483 :
3484 0 : GDALPDFStream *poStream = poObj->GetStream();
3485 0 : if (poStream == nullptr)
3486 0 : return;
3487 :
3488 0 : char *pszContent = poStream->GetBytes();
3489 0 : const auto nLength = poStream->GetLength();
3490 0 : if (pszContent != nullptr && nLength > 15 &&
3491 0 : STARTS_WITH(pszContent, "<?xpacket begin="))
3492 : {
3493 : char *apszMDList[2];
3494 0 : apszMDList[0] = pszContent;
3495 0 : apszMDList[1] = nullptr;
3496 0 : SetMetadata(apszMDList, "xml:XMP");
3497 : }
3498 0 : CPLFree(pszContent);
3499 : }
3500 :
3501 : /************************************************************************/
3502 : /* ParseInfo() */
3503 : /************************************************************************/
3504 :
3505 226 : void PDFDataset::ParseInfo(GDALPDFObject *poInfoObj)
3506 : {
3507 226 : if (poInfoObj->GetType() != PDFObjectType_Dictionary)
3508 158 : return;
3509 :
3510 68 : GDALPDFDictionary *poInfoObjDict = poInfoObj->GetDictionary();
3511 68 : GDALPDFObject *poItem = nullptr;
3512 68 : int bOneMDISet = FALSE;
3513 85 : if ((poItem = poInfoObjDict->Get("Author")) != nullptr &&
3514 17 : poItem->GetType() == PDFObjectType_String)
3515 : {
3516 17 : SetMetadataItem("AUTHOR", poItem->GetString().c_str());
3517 17 : bOneMDISet = TRUE;
3518 : }
3519 113 : if ((poItem = poInfoObjDict->Get("Creator")) != nullptr &&
3520 45 : poItem->GetType() == PDFObjectType_String)
3521 : {
3522 45 : SetMetadataItem("CREATOR", poItem->GetString().c_str());
3523 45 : bOneMDISet = TRUE;
3524 : }
3525 76 : if ((poItem = poInfoObjDict->Get("Keywords")) != nullptr &&
3526 8 : poItem->GetType() == PDFObjectType_String)
3527 : {
3528 8 : SetMetadataItem("KEYWORDS", poItem->GetString().c_str());
3529 8 : bOneMDISet = TRUE;
3530 : }
3531 79 : if ((poItem = poInfoObjDict->Get("Subject")) != nullptr &&
3532 11 : poItem->GetType() == PDFObjectType_String)
3533 : {
3534 11 : SetMetadataItem("SUBJECT", poItem->GetString().c_str());
3535 11 : bOneMDISet = TRUE;
3536 : }
3537 80 : if ((poItem = poInfoObjDict->Get("Title")) != nullptr &&
3538 12 : poItem->GetType() == PDFObjectType_String)
3539 : {
3540 12 : SetMetadataItem("TITLE", poItem->GetString().c_str());
3541 12 : bOneMDISet = TRUE;
3542 : }
3543 91 : if ((poItem = poInfoObjDict->Get("Producer")) != nullptr &&
3544 23 : poItem->GetType() == PDFObjectType_String)
3545 : {
3546 34 : if (bOneMDISet ||
3547 11 : poItem->GetString() != "PoDoFo - http://podofo.sf.net")
3548 : {
3549 12 : SetMetadataItem("PRODUCER", poItem->GetString().c_str());
3550 12 : bOneMDISet = TRUE;
3551 : }
3552 : }
3553 116 : if ((poItem = poInfoObjDict->Get("CreationDate")) != nullptr &&
3554 48 : poItem->GetType() == PDFObjectType_String)
3555 : {
3556 48 : if (bOneMDISet)
3557 37 : SetMetadataItem("CREATION_DATE", poItem->GetString().c_str());
3558 : }
3559 : }
3560 :
3561 : #if defined(HAVE_POPPLER) || defined(HAVE_PDFIUM)
3562 :
3563 : /************************************************************************/
3564 : /* AddLayer() */
3565 : /************************************************************************/
3566 :
3567 468 : void PDFDataset::AddLayer(const std::string &osName, int iPage)
3568 : {
3569 936 : LayerStruct layerStruct;
3570 468 : layerStruct.osName = osName;
3571 468 : layerStruct.nInsertIdx = static_cast<int>(m_oLayerNameSet.size());
3572 468 : layerStruct.iPage = iPage;
3573 468 : m_oLayerNameSet.emplace_back(std::move(layerStruct));
3574 468 : }
3575 :
3576 : /************************************************************************/
3577 : /* CreateLayerList() */
3578 : /************************************************************************/
3579 :
3580 269 : void PDFDataset::CreateLayerList()
3581 : {
3582 : // Sort layers by prioritizing page number and then insertion index
3583 269 : std::sort(m_oLayerNameSet.begin(), m_oLayerNameSet.end(),
3584 1938 : [](const LayerStruct &a, const LayerStruct &b)
3585 : {
3586 1938 : if (a.iPage < b.iPage)
3587 78 : return true;
3588 1860 : if (a.iPage > b.iPage)
3589 0 : return false;
3590 1860 : return a.nInsertIdx < b.nInsertIdx;
3591 : });
3592 :
3593 269 : if (m_oLayerNameSet.size() >= 100)
3594 : {
3595 199 : for (const auto &oLayerStruct : m_oLayerNameSet)
3596 : {
3597 : m_aosLayerNames.AddNameValue(
3598 : CPLSPrintf("LAYER_%03d_NAME", m_aosLayerNames.size()),
3599 198 : oLayerStruct.osName.c_str());
3600 : }
3601 : }
3602 : else
3603 : {
3604 538 : for (const auto &oLayerStruct : m_oLayerNameSet)
3605 : {
3606 : m_aosLayerNames.AddNameValue(
3607 : CPLSPrintf("LAYER_%02d_NAME", m_aosLayerNames.size()),
3608 270 : oLayerStruct.osName.c_str());
3609 : }
3610 : }
3611 269 : }
3612 :
3613 : /************************************************************************/
3614 : /* BuildPostfixedLayerNameAndAddLayer() */
3615 : /************************************************************************/
3616 :
3617 : /** Append a suffix with the page number(s) to the provided layer name, if
3618 : * it makes sense (that is if it is a multiple page PDF and we haven't selected
3619 : * a specific name). And also call AddLayer() on it if successful.
3620 : * If may return an empty string if the layer isn't used by the page of interest
3621 : */
3622 612 : std::string PDFDataset::BuildPostfixedLayerNameAndAddLayer(
3623 : const std::string &osName, const std::pair<int, int> &oOCGRef,
3624 : int iPageOfInterest, int nPageCount)
3625 : {
3626 1224 : std::string osPostfixedName = osName;
3627 612 : int iLayerPage = 0;
3628 612 : if (nPageCount > 1 && !m_oMapOCGNumGenToPages.empty())
3629 : {
3630 216 : const auto oIterToPages = m_oMapOCGNumGenToPages.find(oOCGRef);
3631 216 : if (oIterToPages != m_oMapOCGNumGenToPages.end())
3632 : {
3633 216 : const auto &anPages = oIterToPages->second;
3634 216 : if (iPageOfInterest > 0)
3635 : {
3636 192 : if (std::find(anPages.begin(), anPages.end(),
3637 192 : iPageOfInterest) == anPages.end())
3638 : {
3639 144 : return std::string();
3640 : }
3641 : }
3642 24 : else if (anPages.size() == 1)
3643 : {
3644 24 : iLayerPage = anPages.front();
3645 24 : osPostfixedName += CPLSPrintf(" (page %d)", anPages.front());
3646 : }
3647 : else
3648 : {
3649 0 : osPostfixedName += " (pages ";
3650 0 : for (size_t j = 0; j < anPages.size(); ++j)
3651 : {
3652 0 : if (j > 0)
3653 0 : osPostfixedName += ", ";
3654 0 : osPostfixedName += CPLSPrintf("%d", anPages[j]);
3655 : }
3656 0 : osPostfixedName += ')';
3657 : }
3658 : }
3659 : }
3660 :
3661 468 : AddLayer(osPostfixedName, iLayerPage);
3662 :
3663 468 : return osPostfixedName;
3664 : }
3665 :
3666 : #endif // defined(HAVE_POPPLER) || defined(HAVE_PDFIUM)
3667 :
3668 : #ifdef HAVE_POPPLER
3669 :
3670 : /************************************************************************/
3671 : /* ExploreLayersPoppler() */
3672 : /************************************************************************/
3673 :
3674 135 : void PDFDataset::ExploreLayersPoppler(GDALPDFArray *poArray,
3675 : int iPageOfInterest, int nPageCount,
3676 : CPLString osTopLayer, int nRecLevel,
3677 : int &nVisited, bool &bStop)
3678 : {
3679 135 : if (nRecLevel == 16 || nVisited == 1000)
3680 : {
3681 0 : CPLError(
3682 : CE_Failure, CPLE_AppDefined,
3683 : "ExploreLayersPoppler(): too deep exploration or too many items");
3684 0 : bStop = true;
3685 0 : return;
3686 : }
3687 135 : if (bStop)
3688 0 : return;
3689 :
3690 135 : int nLength = poArray->GetLength();
3691 135 : CPLString osCurLayer;
3692 414 : for (int i = 0; i < nLength; i++)
3693 : {
3694 279 : nVisited++;
3695 279 : GDALPDFObject *poObj = poArray->Get(i);
3696 279 : if (poObj == nullptr)
3697 0 : continue;
3698 279 : if (i == 0 && poObj->GetType() == PDFObjectType_String)
3699 : {
3700 : std::string osName =
3701 0 : PDFSanitizeLayerName(poObj->GetString().c_str());
3702 0 : if (!osTopLayer.empty())
3703 : {
3704 0 : osTopLayer += '.';
3705 0 : osTopLayer += osName;
3706 : }
3707 : else
3708 0 : osTopLayer = std::move(osName);
3709 0 : AddLayer(osTopLayer, 0);
3710 0 : m_oLayerOCGListPoppler.push_back(std::pair(osTopLayer, nullptr));
3711 : }
3712 279 : else if (poObj->GetType() == PDFObjectType_Array)
3713 : {
3714 97 : ExploreLayersPoppler(poObj->GetArray(), iPageOfInterest, nPageCount,
3715 : osCurLayer, nRecLevel + 1, nVisited, bStop);
3716 97 : if (bStop)
3717 0 : return;
3718 97 : osCurLayer = "";
3719 : }
3720 182 : else if (poObj->GetType() == PDFObjectType_Dictionary)
3721 : {
3722 182 : GDALPDFDictionary *poDict = poObj->GetDictionary();
3723 182 : GDALPDFObject *poName = poDict->Get("Name");
3724 182 : if (poName != nullptr && poName->GetType() == PDFObjectType_String)
3725 : {
3726 : std::string osName =
3727 182 : PDFSanitizeLayerName(poName->GetString().c_str());
3728 : /* coverity[copy_paste_error] */
3729 182 : if (!osTopLayer.empty())
3730 : {
3731 103 : osCurLayer = osTopLayer;
3732 103 : osCurLayer += '.';
3733 103 : osCurLayer += osName;
3734 : }
3735 : else
3736 79 : osCurLayer = std::move(osName);
3737 : // CPLDebug("PDF", "Layer %s", osCurLayer.c_str());
3738 :
3739 182 : OCGs *optContentConfig = m_poDocPoppler->getOptContentConfig();
3740 : struct Ref r;
3741 182 : r.num = poObj->GetRefNum().toInt();
3742 182 : r.gen = poObj->GetRefGen();
3743 182 : OptionalContentGroup *ocg = optContentConfig->findOcgByRef(r);
3744 182 : if (ocg)
3745 : {
3746 182 : const auto oRefPair = std::pair(poObj->GetRefNum().toInt(),
3747 364 : poObj->GetRefGen());
3748 : const std::string osPostfixedName =
3749 : BuildPostfixedLayerNameAndAddLayer(
3750 182 : osCurLayer, oRefPair, iPageOfInterest, nPageCount);
3751 182 : if (osPostfixedName.empty())
3752 72 : continue;
3753 :
3754 110 : m_oLayerOCGListPoppler.push_back(
3755 220 : std::make_pair(osPostfixedName, ocg));
3756 110 : m_aoLayerWithRef.emplace_back(osPostfixedName.c_str(),
3757 220 : poObj->GetRefNum(), r.gen);
3758 : }
3759 : }
3760 : }
3761 : }
3762 : }
3763 :
3764 : /************************************************************************/
3765 : /* FindLayersPoppler() */
3766 : /************************************************************************/
3767 :
3768 189 : void PDFDataset::FindLayersPoppler(int iPageOfInterest)
3769 : {
3770 189 : int nPageCount = 0;
3771 189 : const auto poPages = GetPagesKids();
3772 189 : if (poPages)
3773 189 : nPageCount = poPages->GetLength();
3774 :
3775 189 : OCGs *optContentConfig = m_poDocPoppler->getOptContentConfig();
3776 189 : if (optContentConfig == nullptr || !optContentConfig->isOk())
3777 151 : return;
3778 :
3779 38 : Array *array = optContentConfig->getOrderArray();
3780 38 : if (array)
3781 : {
3782 38 : GDALPDFArray *poArray = GDALPDFCreateArray(array);
3783 38 : int nVisited = 0;
3784 38 : bool bStop = false;
3785 38 : ExploreLayersPoppler(poArray, iPageOfInterest, nPageCount, CPLString(),
3786 : 0, nVisited, bStop);
3787 38 : delete poArray;
3788 : }
3789 : else
3790 : {
3791 0 : for (const auto &refOCGPair : optContentConfig->getOCGs())
3792 : {
3793 0 : auto ocg = refOCGPair.second.get();
3794 0 : if (ocg != nullptr && ocg->getName() != nullptr)
3795 : {
3796 : const char *pszLayerName =
3797 0 : reinterpret_cast<const char *>(ocg->getName()->c_str());
3798 0 : AddLayer(pszLayerName, 0);
3799 0 : m_oLayerOCGListPoppler.push_back(
3800 0 : std::make_pair(CPLString(pszLayerName), ocg));
3801 : }
3802 : }
3803 : }
3804 :
3805 38 : CreateLayerList();
3806 38 : m_oMDMD_PDF.SetMetadata(m_aosLayerNames.List(), "LAYERS");
3807 : }
3808 :
3809 : /************************************************************************/
3810 : /* TurnLayersOnOffPoppler() */
3811 : /************************************************************************/
3812 :
3813 189 : void PDFDataset::TurnLayersOnOffPoppler()
3814 : {
3815 189 : OCGs *optContentConfig = m_poDocPoppler->getOptContentConfig();
3816 189 : if (optContentConfig == nullptr || !optContentConfig->isOk())
3817 151 : return;
3818 :
3819 : // Which layers to turn ON ?
3820 38 : const char *pszLayers = GetOption(papszOpenOptions, "LAYERS", nullptr);
3821 38 : if (pszLayers)
3822 : {
3823 : int i;
3824 2 : int bAll = EQUAL(pszLayers, "ALL");
3825 12 : for (const auto &refOCGPair : optContentConfig->getOCGs())
3826 : {
3827 10 : auto ocg = refOCGPair.second.get();
3828 10 : ocg->setState((bAll) ? OptionalContentGroup::On
3829 : : OptionalContentGroup::Off);
3830 : }
3831 :
3832 2 : char **papszLayers = CSLTokenizeString2(pszLayers, ",", 0);
3833 4 : for (i = 0; !bAll && papszLayers[i] != nullptr; i++)
3834 : {
3835 2 : bool isFound = false;
3836 12 : for (auto oIter2 = m_oLayerOCGListPoppler.begin();
3837 22 : oIter2 != m_oLayerOCGListPoppler.end(); ++oIter2)
3838 : {
3839 10 : if (oIter2->first != papszLayers[i])
3840 8 : continue;
3841 :
3842 2 : isFound = true;
3843 2 : auto oIter = oIter2;
3844 2 : if (oIter->second)
3845 : {
3846 : // CPLDebug("PDF", "Turn '%s' on", papszLayers[i]);
3847 2 : oIter->second->setState(OptionalContentGroup::On);
3848 : }
3849 :
3850 : // Turn child layers on, unless there's one of them explicitly
3851 : // listed in the list.
3852 2 : size_t nLen = strlen(papszLayers[i]);
3853 2 : int bFoundChildLayer = FALSE;
3854 2 : oIter = m_oLayerOCGListPoppler.begin();
3855 10 : for (;
3856 12 : oIter != m_oLayerOCGListPoppler.end() && !bFoundChildLayer;
3857 10 : ++oIter)
3858 : {
3859 10 : if (oIter->first.size() > nLen &&
3860 5 : strncmp(oIter->first.c_str(), papszLayers[i], nLen) ==
3861 15 : 0 &&
3862 2 : oIter->first[nLen] == '.')
3863 : {
3864 4 : for (int j = 0; papszLayers[j] != nullptr; j++)
3865 : {
3866 2 : if (strcmp(papszLayers[j], oIter->first.c_str()) ==
3867 : 0)
3868 : {
3869 0 : bFoundChildLayer = TRUE;
3870 0 : break;
3871 : }
3872 : }
3873 : }
3874 : }
3875 :
3876 2 : if (!bFoundChildLayer)
3877 : {
3878 2 : oIter = m_oLayerOCGListPoppler.begin();
3879 12 : for (; oIter != m_oLayerOCGListPoppler.end() &&
3880 : !bFoundChildLayer;
3881 10 : ++oIter)
3882 : {
3883 10 : if (oIter->first.size() > nLen &&
3884 5 : strncmp(oIter->first.c_str(), papszLayers[i],
3885 15 : nLen) == 0 &&
3886 2 : oIter->first[nLen] == '.')
3887 : {
3888 2 : if (oIter->second)
3889 : {
3890 : // CPLDebug("PDF", "Turn '%s' on too",
3891 : // oIter->first.c_str());
3892 2 : oIter->second->setState(
3893 : OptionalContentGroup::On);
3894 : }
3895 : }
3896 : }
3897 : }
3898 :
3899 : // Turn parent layers on too
3900 6 : std::string layer(papszLayers[i]);
3901 : std::string::size_type j;
3902 3 : while ((j = layer.find_last_of('.')) != std::string::npos)
3903 : {
3904 1 : layer.resize(j);
3905 1 : oIter = m_oLayerOCGListPoppler.begin();
3906 6 : for (; oIter != m_oLayerOCGListPoppler.end(); ++oIter)
3907 : {
3908 5 : if (oIter->first == layer && oIter->second)
3909 : {
3910 : // CPLDebug("PDF", "Turn '%s' on too",
3911 : // layer.c_str());
3912 1 : oIter->second->setState(OptionalContentGroup::On);
3913 : }
3914 : }
3915 : }
3916 : }
3917 2 : if (!isFound)
3918 : {
3919 0 : CPLError(CE_Warning, CPLE_AppDefined, "Unknown layer '%s'",
3920 0 : papszLayers[i]);
3921 : }
3922 : }
3923 2 : CSLDestroy(papszLayers);
3924 :
3925 2 : m_bUseOCG = true;
3926 : }
3927 :
3928 : // Which layers to turn OFF ?
3929 : const char *pszLayersOFF =
3930 38 : GetOption(papszOpenOptions, "LAYERS_OFF", nullptr);
3931 38 : if (pszLayersOFF)
3932 : {
3933 5 : char **papszLayersOFF = CSLTokenizeString2(pszLayersOFF, ",", 0);
3934 10 : for (int i = 0; papszLayersOFF[i] != nullptr; i++)
3935 : {
3936 5 : bool isFound = false;
3937 22 : for (auto oIter2 = m_oLayerOCGListPoppler.begin();
3938 39 : oIter2 != m_oLayerOCGListPoppler.end(); ++oIter2)
3939 : {
3940 17 : if (oIter2->first != papszLayersOFF[i])
3941 12 : continue;
3942 :
3943 5 : isFound = true;
3944 5 : auto oIter = oIter2;
3945 5 : if (oIter->second)
3946 : {
3947 : // CPLDebug("PDF", "Turn '%s' off", papszLayersOFF[i]);
3948 5 : oIter->second->setState(OptionalContentGroup::Off);
3949 : }
3950 :
3951 : // Turn child layers off too
3952 5 : size_t nLen = strlen(papszLayersOFF[i]);
3953 5 : oIter = m_oLayerOCGListPoppler.begin();
3954 22 : for (; oIter != m_oLayerOCGListPoppler.end(); ++oIter)
3955 : {
3956 17 : if (oIter->first.size() > nLen &&
3957 3 : strncmp(oIter->first.c_str(), papszLayersOFF[i],
3958 20 : nLen) == 0 &&
3959 1 : oIter->first[nLen] == '.')
3960 : {
3961 1 : if (oIter->second)
3962 : {
3963 : // CPLDebug("PDF", "Turn '%s' off too",
3964 : // oIter->first.c_str());
3965 1 : oIter->second->setState(OptionalContentGroup::Off);
3966 : }
3967 : }
3968 : }
3969 : }
3970 5 : if (!isFound)
3971 : {
3972 0 : CPLError(CE_Warning, CPLE_AppDefined, "Unknown layer '%s'",
3973 0 : papszLayersOFF[i]);
3974 : }
3975 : }
3976 5 : CSLDestroy(papszLayersOFF);
3977 :
3978 5 : m_bUseOCG = true;
3979 : }
3980 : }
3981 :
3982 : #endif
3983 :
3984 : #ifdef HAVE_PDFIUM
3985 :
3986 : /************************************************************************/
3987 : /* ExploreLayersPdfium() */
3988 : /************************************************************************/
3989 :
3990 209 : void PDFDataset::ExploreLayersPdfium(GDALPDFArray *poArray, int iPageOfInterest,
3991 : int nPageCount, int nRecLevel,
3992 : CPLString osTopLayer)
3993 : {
3994 209 : if (nRecLevel == 16)
3995 0 : return;
3996 :
3997 209 : const int nLength = poArray->GetLength();
3998 418 : std::string osCurLayer;
3999 787 : for (int i = 0; i < nLength; i++)
4000 : {
4001 578 : GDALPDFObject *poObj = poArray->Get(i);
4002 578 : if (poObj == nullptr)
4003 0 : continue;
4004 578 : if (i == 0 && poObj->GetType() == PDFObjectType_String)
4005 : {
4006 : const std::string osName =
4007 0 : PDFSanitizeLayerName(poObj->GetString().c_str());
4008 0 : if (!osTopLayer.empty())
4009 0 : osTopLayer = std::string(osTopLayer).append(".").append(osName);
4010 : else
4011 0 : osTopLayer = osName;
4012 0 : AddLayer(osTopLayer, 0);
4013 0 : m_oMapLayerNameToOCGNumGenPdfium[osTopLayer] = std::pair(-1, -1);
4014 : }
4015 578 : else if (poObj->GetType() == PDFObjectType_Array)
4016 : {
4017 148 : ExploreLayersPdfium(poObj->GetArray(), iPageOfInterest, nPageCount,
4018 : nRecLevel + 1, osCurLayer);
4019 148 : osCurLayer.clear();
4020 : }
4021 430 : else if (poObj->GetType() == PDFObjectType_Dictionary)
4022 : {
4023 430 : GDALPDFDictionary *poDict = poObj->GetDictionary();
4024 430 : GDALPDFObject *poName = poDict->Get("Name");
4025 430 : if (poName != nullptr && poName->GetType() == PDFObjectType_String)
4026 : {
4027 : const std::string osName =
4028 430 : PDFSanitizeLayerName(poName->GetString().c_str());
4029 : // coverity[copy_paste_error]
4030 430 : if (!osTopLayer.empty())
4031 : {
4032 : osCurLayer =
4033 304 : std::string(osTopLayer).append(".").append(osName);
4034 : }
4035 : else
4036 126 : osCurLayer = osName;
4037 : // CPLDebug("PDF", "Layer %s", osCurLayer.c_str());
4038 :
4039 : const auto oRefPair =
4040 430 : std::pair(poObj->GetRefNum().toInt(), poObj->GetRefGen());
4041 : const std::string osPostfixedName =
4042 : BuildPostfixedLayerNameAndAddLayer(
4043 430 : osCurLayer, oRefPair, iPageOfInterest, nPageCount);
4044 430 : if (osPostfixedName.empty())
4045 72 : continue;
4046 :
4047 : m_aoLayerWithRef.emplace_back(
4048 358 : osPostfixedName, poObj->GetRefNum(), poObj->GetRefGen());
4049 358 : m_oMapLayerNameToOCGNumGenPdfium[osPostfixedName] = oRefPair;
4050 : }
4051 : }
4052 : }
4053 : }
4054 :
4055 : /************************************************************************/
4056 : /* FindLayersPdfium() */
4057 : /************************************************************************/
4058 :
4059 231 : void PDFDataset::FindLayersPdfium(int iPageOfInterest)
4060 : {
4061 231 : int nPageCount = 0;
4062 231 : const auto poPages = GetPagesKids();
4063 231 : if (poPages)
4064 231 : nPageCount = poPages->GetLength();
4065 :
4066 231 : GDALPDFObject *poCatalog = GetCatalog();
4067 462 : if (poCatalog == nullptr ||
4068 231 : poCatalog->GetType() != PDFObjectType_Dictionary)
4069 0 : return;
4070 231 : GDALPDFObject *poOrder = poCatalog->LookupObject("OCProperties.D.Order");
4071 231 : if (poOrder != nullptr && poOrder->GetType() == PDFObjectType_Array)
4072 : {
4073 61 : ExploreLayersPdfium(poOrder->GetArray(), iPageOfInterest, nPageCount,
4074 : 0);
4075 : }
4076 : #if 0
4077 : else
4078 : {
4079 : GDALPDFObject* poOCGs = poD->GetDictionary()->Get("OCGs");
4080 : if( poOCGs != nullptr && poOCGs->GetType() == PDFObjectType_Array )
4081 : {
4082 : GDALPDFArray* poArray = poOCGs->GetArray();
4083 : int nLength = poArray->GetLength();
4084 : for(int i=0;i<nLength;i++)
4085 : {
4086 : GDALPDFObject* poObj = poArray->Get(i);
4087 : if( poObj != nullptr )
4088 : {
4089 : // TODO ?
4090 : }
4091 : }
4092 : }
4093 : }
4094 : #endif
4095 :
4096 231 : CreateLayerList();
4097 231 : m_oMDMD_PDF.SetMetadata(m_aosLayerNames.List(), "LAYERS");
4098 : }
4099 :
4100 : /************************************************************************/
4101 : /* TurnLayersOnOffPdfium() */
4102 : /************************************************************************/
4103 :
4104 231 : void PDFDataset::TurnLayersOnOffPdfium()
4105 : {
4106 231 : GDALPDFObject *poCatalog = GetCatalog();
4107 462 : if (poCatalog == nullptr ||
4108 231 : poCatalog->GetType() != PDFObjectType_Dictionary)
4109 0 : return;
4110 231 : GDALPDFObject *poOCGs = poCatalog->LookupObject("OCProperties.OCGs");
4111 231 : if (poOCGs == nullptr || poOCGs->GetType() != PDFObjectType_Array)
4112 170 : return;
4113 :
4114 : // Which layers to turn ON ?
4115 61 : const char *pszLayers = GetOption(papszOpenOptions, "LAYERS", nullptr);
4116 61 : if (pszLayers)
4117 : {
4118 : int i;
4119 2 : int bAll = EQUAL(pszLayers, "ALL");
4120 :
4121 2 : GDALPDFArray *poOCGsArray = poOCGs->GetArray();
4122 2 : int nLength = poOCGsArray->GetLength();
4123 12 : for (i = 0; i < nLength; i++)
4124 : {
4125 10 : GDALPDFObject *poOCG = poOCGsArray->Get(i);
4126 0 : m_oMapOCGNumGenToVisibilityStatePdfium[std::pair(
4127 10 : poOCG->GetRefNum().toInt(), poOCG->GetRefGen())] =
4128 10 : (bAll) ? VISIBILITY_ON : VISIBILITY_OFF;
4129 : }
4130 :
4131 2 : char **papszLayers = CSLTokenizeString2(pszLayers, ",", 0);
4132 4 : for (i = 0; !bAll && papszLayers[i] != nullptr; i++)
4133 : {
4134 2 : auto oIter = m_oMapLayerNameToOCGNumGenPdfium.find(papszLayers[i]);
4135 2 : if (oIter != m_oMapLayerNameToOCGNumGenPdfium.end())
4136 : {
4137 2 : if (oIter->second.first >= 0)
4138 : {
4139 : // CPLDebug("PDF", "Turn '%s' on", papszLayers[i]);
4140 2 : m_oMapOCGNumGenToVisibilityStatePdfium[oIter->second] =
4141 : VISIBILITY_ON;
4142 : }
4143 :
4144 : // Turn child layers on, unless there's one of them explicitly
4145 : // listed in the list.
4146 2 : size_t nLen = strlen(papszLayers[i]);
4147 2 : int bFoundChildLayer = FALSE;
4148 2 : oIter = m_oMapLayerNameToOCGNumGenPdfium.begin();
4149 12 : for (; oIter != m_oMapLayerNameToOCGNumGenPdfium.end() &&
4150 : !bFoundChildLayer;
4151 10 : oIter++)
4152 : {
4153 10 : if (oIter->first.size() > nLen &&
4154 5 : strncmp(oIter->first.c_str(), papszLayers[i], nLen) ==
4155 15 : 0 &&
4156 2 : oIter->first[nLen] == '.')
4157 : {
4158 4 : for (int j = 0; papszLayers[j] != nullptr; j++)
4159 : {
4160 2 : if (strcmp(papszLayers[j], oIter->first.c_str()) ==
4161 : 0)
4162 0 : bFoundChildLayer = TRUE;
4163 : }
4164 : }
4165 : }
4166 :
4167 2 : if (!bFoundChildLayer)
4168 : {
4169 2 : oIter = m_oMapLayerNameToOCGNumGenPdfium.begin();
4170 12 : for (; oIter != m_oMapLayerNameToOCGNumGenPdfium.end() &&
4171 : !bFoundChildLayer;
4172 10 : oIter++)
4173 : {
4174 10 : if (oIter->first.size() > nLen &&
4175 5 : strncmp(oIter->first.c_str(), papszLayers[i],
4176 15 : nLen) == 0 &&
4177 2 : oIter->first[nLen] == '.')
4178 : {
4179 2 : if (oIter->second.first >= 0)
4180 : {
4181 : // CPLDebug("PDF", "Turn '%s' on too",
4182 : // oIter->first.c_str());
4183 : m_oMapOCGNumGenToVisibilityStatePdfium
4184 2 : [oIter->second] = VISIBILITY_ON;
4185 : }
4186 : }
4187 : }
4188 : }
4189 :
4190 : // Turn parent layers on too
4191 2 : char *pszLastDot = nullptr;
4192 3 : while ((pszLastDot = strrchr(papszLayers[i], '.')) != nullptr)
4193 : {
4194 1 : *pszLastDot = '\0';
4195 : oIter =
4196 1 : m_oMapLayerNameToOCGNumGenPdfium.find(papszLayers[i]);
4197 1 : if (oIter != m_oMapLayerNameToOCGNumGenPdfium.end())
4198 : {
4199 1 : if (oIter->second.first >= 0)
4200 : {
4201 : // CPLDebug("PDF", "Turn '%s' on too",
4202 : // papszLayers[i]);
4203 : m_oMapOCGNumGenToVisibilityStatePdfium
4204 1 : [oIter->second] = VISIBILITY_ON;
4205 : }
4206 : }
4207 : }
4208 : }
4209 : else
4210 : {
4211 0 : CPLError(CE_Warning, CPLE_AppDefined, "Unknown layer '%s'",
4212 0 : papszLayers[i]);
4213 : }
4214 : }
4215 2 : CSLDestroy(papszLayers);
4216 :
4217 2 : m_bUseOCG = true;
4218 : }
4219 :
4220 : // Which layers to turn OFF ?
4221 : const char *pszLayersOFF =
4222 61 : GetOption(papszOpenOptions, "LAYERS_OFF", nullptr);
4223 61 : if (pszLayersOFF)
4224 : {
4225 5 : char **papszLayersOFF = CSLTokenizeString2(pszLayersOFF, ",", 0);
4226 10 : for (int i = 0; papszLayersOFF[i] != nullptr; i++)
4227 : {
4228 : auto oIter =
4229 5 : m_oMapLayerNameToOCGNumGenPdfium.find(papszLayersOFF[i]);
4230 5 : if (oIter != m_oMapLayerNameToOCGNumGenPdfium.end())
4231 : {
4232 5 : if (oIter->second.first >= 0)
4233 : {
4234 : // CPLDebug("PDF", "Turn '%s' (%d,%d) off",
4235 : // papszLayersOFF[i], oIter->second.first,
4236 : // oIter->second.second);
4237 5 : m_oMapOCGNumGenToVisibilityStatePdfium[oIter->second] =
4238 : VISIBILITY_OFF;
4239 : }
4240 :
4241 : // Turn child layers off too
4242 5 : size_t nLen = strlen(papszLayersOFF[i]);
4243 5 : oIter = m_oMapLayerNameToOCGNumGenPdfium.begin();
4244 22 : for (; oIter != m_oMapLayerNameToOCGNumGenPdfium.end(); oIter++)
4245 : {
4246 17 : if (oIter->first.size() > nLen &&
4247 3 : strncmp(oIter->first.c_str(), papszLayersOFF[i],
4248 20 : nLen) == 0 &&
4249 1 : oIter->first[nLen] == '.')
4250 : {
4251 1 : if (oIter->second.first >= 0)
4252 : {
4253 : // CPLDebug("PDF", "Turn '%s' off too",
4254 : // oIter->first.c_str());
4255 : m_oMapOCGNumGenToVisibilityStatePdfium
4256 1 : [oIter->second] = VISIBILITY_OFF;
4257 : }
4258 : }
4259 : }
4260 : }
4261 : else
4262 : {
4263 0 : CPLError(CE_Warning, CPLE_AppDefined, "Unknown layer '%s'",
4264 0 : papszLayersOFF[i]);
4265 : }
4266 : }
4267 5 : CSLDestroy(papszLayersOFF);
4268 :
4269 5 : m_bUseOCG = true;
4270 : }
4271 : }
4272 :
4273 : /************************************************************************/
4274 : /* GetVisibilityStateForOGCPdfium() */
4275 : /************************************************************************/
4276 :
4277 12996 : PDFDataset::VisibilityState PDFDataset::GetVisibilityStateForOGCPdfium(int nNum,
4278 : int nGen)
4279 : {
4280 : auto oIter =
4281 12996 : m_oMapOCGNumGenToVisibilityStatePdfium.find(std::pair(nNum, nGen));
4282 12996 : if (oIter == m_oMapOCGNumGenToVisibilityStatePdfium.end())
4283 8703 : return VISIBILITY_DEFAULT;
4284 4293 : return oIter->second;
4285 : }
4286 :
4287 : #endif /* HAVE_PDFIUM */
4288 :
4289 : /************************************************************************/
4290 : /* GetPagesKids() */
4291 : /************************************************************************/
4292 :
4293 840 : GDALPDFArray *PDFDataset::GetPagesKids()
4294 : {
4295 840 : const auto poCatalog = GetCatalog();
4296 840 : if (!poCatalog || poCatalog->GetType() != PDFObjectType_Dictionary)
4297 : {
4298 0 : return nullptr;
4299 : }
4300 840 : const auto poKids = poCatalog->LookupObject("Pages.Kids");
4301 840 : if (!poKids || poKids->GetType() != PDFObjectType_Array)
4302 : {
4303 0 : return nullptr;
4304 : }
4305 840 : return poKids->GetArray();
4306 : }
4307 :
4308 : /************************************************************************/
4309 : /* MapOCGsToPages() */
4310 : /************************************************************************/
4311 :
4312 420 : void PDFDataset::MapOCGsToPages()
4313 : {
4314 420 : const auto poKidsArray = GetPagesKids();
4315 420 : if (!poKidsArray)
4316 : {
4317 0 : return;
4318 : }
4319 420 : const int nKidsArrayLength = poKidsArray->GetLength();
4320 904 : for (int iPage = 0; iPage < nKidsArrayLength; ++iPage)
4321 : {
4322 484 : const auto poPage = poKidsArray->Get(iPage);
4323 484 : if (poPage && poPage->GetType() == PDFObjectType_Dictionary)
4324 : {
4325 484 : const auto poXObject = poPage->LookupObject("Resources.XObject");
4326 484 : if (poXObject && poXObject->GetType() == PDFObjectType_Dictionary)
4327 : {
4328 1001 : for (const auto &oNameObjectPair :
4329 2468 : poXObject->GetDictionary()->GetValues())
4330 : {
4331 : const auto poProperties =
4332 1001 : oNameObjectPair.second->LookupObject(
4333 : "Resources.Properties");
4334 1074 : if (poProperties &&
4335 73 : poProperties->GetType() == PDFObjectType_Dictionary)
4336 : {
4337 : const auto &oMap =
4338 73 : poProperties->GetDictionary()->GetValues();
4339 426 : for (const auto &[osKey, poObj] : oMap)
4340 : {
4341 706 : if (poObj->GetRefNum().toBool() &&
4342 353 : poObj->GetType() == PDFObjectType_Dictionary)
4343 : {
4344 : GDALPDFObject *poType =
4345 353 : poObj->GetDictionary()->Get("Type");
4346 : GDALPDFObject *poName =
4347 353 : poObj->GetDictionary()->Get("Name");
4348 706 : if (poType &&
4349 706 : poType->GetType() == PDFObjectType_Name &&
4350 1412 : poType->GetName() == "OCG" && poName &&
4351 353 : poName->GetType() == PDFObjectType_String)
4352 : {
4353 : m_oMapOCGNumGenToPages
4354 353 : [std::pair(poObj->GetRefNum().toInt(),
4355 706 : poObj->GetRefGen())]
4356 353 : .push_back(iPage + 1);
4357 : }
4358 : }
4359 : }
4360 : }
4361 : }
4362 : }
4363 : }
4364 : }
4365 : }
4366 :
4367 : /************************************************************************/
4368 : /* FindLayerOCG() */
4369 : /************************************************************************/
4370 :
4371 396 : CPLString PDFDataset::FindLayerOCG(GDALPDFDictionary *poPageDict,
4372 : const char *pszLayerName)
4373 : {
4374 : GDALPDFObject *poProperties =
4375 396 : poPageDict->LookupObject("Resources.Properties");
4376 462 : if (poProperties != nullptr &&
4377 66 : poProperties->GetType() == PDFObjectType_Dictionary)
4378 : {
4379 66 : const auto &oMap = poProperties->GetDictionary()->GetValues();
4380 187 : for (const auto &[osKey, poObj] : oMap)
4381 : {
4382 241 : if (poObj->GetRefNum().toBool() &&
4383 120 : poObj->GetType() == PDFObjectType_Dictionary)
4384 : {
4385 120 : GDALPDFObject *poType = poObj->GetDictionary()->Get("Type");
4386 120 : GDALPDFObject *poName = poObj->GetDictionary()->Get("Name");
4387 240 : if (poType != nullptr &&
4388 240 : poType->GetType() == PDFObjectType_Name &&
4389 480 : poType->GetName() == "OCG" && poName != nullptr &&
4390 120 : poName->GetType() == PDFObjectType_String)
4391 : {
4392 120 : if (poName->GetString() == pszLayerName)
4393 0 : return osKey;
4394 : }
4395 : }
4396 : }
4397 : }
4398 396 : return "";
4399 : }
4400 :
4401 : /************************************************************************/
4402 : /* FindLayersGeneric() */
4403 : /************************************************************************/
4404 :
4405 0 : void PDFDataset::FindLayersGeneric(GDALPDFDictionary *poPageDict)
4406 : {
4407 : GDALPDFObject *poProperties =
4408 0 : poPageDict->LookupObject("Resources.Properties");
4409 0 : if (poProperties != nullptr &&
4410 0 : poProperties->GetType() == PDFObjectType_Dictionary)
4411 : {
4412 0 : const auto &oMap = poProperties->GetDictionary()->GetValues();
4413 0 : for (const auto &[osKey, poObj] : oMap)
4414 : {
4415 0 : if (poObj->GetRefNum().toBool() &&
4416 0 : poObj->GetType() == PDFObjectType_Dictionary)
4417 : {
4418 0 : GDALPDFObject *poType = poObj->GetDictionary()->Get("Type");
4419 0 : GDALPDFObject *poName = poObj->GetDictionary()->Get("Name");
4420 0 : if (poType != nullptr &&
4421 0 : poType->GetType() == PDFObjectType_Name &&
4422 0 : poType->GetName() == "OCG" && poName != nullptr &&
4423 0 : poName->GetType() == PDFObjectType_String)
4424 : {
4425 : m_aoLayerWithRef.emplace_back(
4426 0 : PDFSanitizeLayerName(poName->GetString().c_str())
4427 0 : .c_str(),
4428 0 : poObj->GetRefNum(), poObj->GetRefGen());
4429 : }
4430 : }
4431 : }
4432 : }
4433 0 : }
4434 :
4435 : /************************************************************************/
4436 : /* Open() */
4437 : /************************************************************************/
4438 :
4439 442 : PDFDataset *PDFDataset::Open(GDALOpenInfo *poOpenInfo)
4440 :
4441 : {
4442 442 : if (!PDFDatasetIdentify(poOpenInfo))
4443 2 : return nullptr;
4444 :
4445 : const char *pszUserPwd =
4446 440 : GetOption(poOpenInfo->papszOpenOptions, "USER_PWD", nullptr);
4447 :
4448 440 : const bool bOpenSubdataset = STARTS_WITH(poOpenInfo->pszFilename, "PDF:");
4449 440 : const bool bOpenSubdatasetImage =
4450 440 : STARTS_WITH(poOpenInfo->pszFilename, "PDF_IMAGE:");
4451 440 : int iPage = -1;
4452 440 : int nImageNum = -1;
4453 880 : std::string osSubdatasetName;
4454 440 : const char *pszFilename = poOpenInfo->pszFilename;
4455 :
4456 440 : if (bOpenSubdataset)
4457 : {
4458 30 : iPage = atoi(pszFilename + 4);
4459 30 : if (iPage <= 0)
4460 2 : return nullptr;
4461 28 : pszFilename = strchr(pszFilename + 4, ':');
4462 28 : if (pszFilename == nullptr)
4463 0 : return nullptr;
4464 28 : pszFilename++;
4465 28 : osSubdatasetName = CPLSPrintf("Page %d", iPage);
4466 : }
4467 410 : else if (bOpenSubdatasetImage)
4468 : {
4469 0 : iPage = atoi(pszFilename + 10);
4470 0 : if (iPage <= 0)
4471 0 : return nullptr;
4472 0 : const char *pszNext = strchr(pszFilename + 10, ':');
4473 0 : if (pszNext == nullptr)
4474 0 : return nullptr;
4475 0 : nImageNum = atoi(pszNext + 1);
4476 0 : if (nImageNum <= 0)
4477 0 : return nullptr;
4478 0 : pszFilename = strchr(pszNext + 1, ':');
4479 0 : if (pszFilename == nullptr)
4480 0 : return nullptr;
4481 0 : pszFilename++;
4482 0 : osSubdatasetName = CPLSPrintf("Image %d", nImageNum);
4483 : }
4484 : else
4485 410 : iPage = 1;
4486 :
4487 438 : std::bitset<PDFLIB_COUNT> bHasLib;
4488 438 : bHasLib.reset();
4489 : // Each library set their flag
4490 : #if defined(HAVE_POPPLER)
4491 438 : bHasLib.set(PDFLIB_POPPLER);
4492 : #endif // HAVE_POPPLER
4493 : #if defined(HAVE_PODOFO)
4494 : bHasLib.set(PDFLIB_PODOFO);
4495 : #endif // HAVE_PODOFO
4496 : #if defined(HAVE_PDFIUM)
4497 438 : bHasLib.set(PDFLIB_PDFIUM);
4498 : #endif // HAVE_PDFIUM
4499 :
4500 438 : std::bitset<PDFLIB_COUNT> bUseLib;
4501 :
4502 : // More than one library available
4503 : // Detect which one
4504 438 : if (bHasLib.count() != 1)
4505 : {
4506 438 : const char *pszDefaultLib = bHasLib.test(PDFLIB_PDFIUM) ? "PDFIUM"
4507 0 : : bHasLib.test(PDFLIB_POPPLER) ? "POPPLER"
4508 438 : : "PODOFO";
4509 : const char *pszPDFLib =
4510 438 : GetOption(poOpenInfo->papszOpenOptions, "PDF_LIB", pszDefaultLib);
4511 : while (true)
4512 : {
4513 438 : if (EQUAL(pszPDFLib, "POPPLER"))
4514 193 : bUseLib.set(PDFLIB_POPPLER);
4515 245 : else if (EQUAL(pszPDFLib, "PODOFO"))
4516 0 : bUseLib.set(PDFLIB_PODOFO);
4517 245 : else if (EQUAL(pszPDFLib, "PDFIUM"))
4518 245 : bUseLib.set(PDFLIB_PDFIUM);
4519 :
4520 438 : if (bUseLib.count() != 1 || (bHasLib & bUseLib) == 0)
4521 : {
4522 0 : CPLDebug("PDF",
4523 : "Invalid value for GDAL_PDF_LIB config option: %s. "
4524 : "Fallback to %s",
4525 : pszPDFLib, pszDefaultLib);
4526 0 : pszPDFLib = pszDefaultLib;
4527 0 : bUseLib.reset();
4528 : }
4529 : else
4530 438 : break;
4531 : }
4532 : }
4533 : else
4534 0 : bUseLib = bHasLib;
4535 :
4536 438 : GDALPDFObject *poPageObj = nullptr;
4537 : #ifdef HAVE_POPPLER
4538 438 : PDFDoc *poDocPoppler = nullptr;
4539 438 : Page *poPagePoppler = nullptr;
4540 438 : Catalog *poCatalogPoppler = nullptr;
4541 : #endif
4542 : #ifdef HAVE_PODOFO
4543 : std::unique_ptr<PoDoFo::PdfMemDocument> poDocPodofo;
4544 : PoDoFo::PdfPage *poPagePodofo = nullptr;
4545 : #endif
4546 : #ifdef HAVE_PDFIUM
4547 438 : TPdfiumDocumentStruct *poDocPdfium = nullptr;
4548 438 : TPdfiumPageStruct *poPagePdfium = nullptr;
4549 : #endif
4550 438 : int nPages = 0;
4551 438 : VSIVirtualHandleUniquePtr fp;
4552 :
4553 : #ifdef HAVE_POPPLER
4554 438 : if (bUseLib.test(PDFLIB_POPPLER))
4555 : {
4556 : static bool globalParamsCreatedByGDAL = false;
4557 : {
4558 386 : CPLMutexHolderD(&hGlobalParamsMutex);
4559 : /* poppler global variable */
4560 193 : if (globalParams == nullptr)
4561 : {
4562 2 : globalParamsCreatedByGDAL = true;
4563 2 : globalParams.reset(new GlobalParams());
4564 : }
4565 :
4566 193 : globalParams->setPrintCommands(CPLTestBool(
4567 : CPLGetConfigOption("GDAL_PDF_PRINT_COMMANDS", "FALSE")));
4568 : }
4569 :
4570 384 : const auto registerErrorCallback = []()
4571 : {
4572 : /* Set custom error handler for poppler errors */
4573 384 : setErrorCallback(PDFDatasetErrorFunction);
4574 384 : assert(globalParams); // avoid CSA false positive
4575 384 : globalParams->setErrQuiet(false);
4576 384 : };
4577 :
4578 193 : fp.reset(VSIFOpenL(pszFilename, "rb"));
4579 193 : if (!fp)
4580 4 : return nullptr;
4581 :
4582 : #ifdef FUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION
4583 : {
4584 : // Workaround for ossfuzz only due to
4585 : // https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=37584
4586 : // https://gitlab.freedesktop.org/poppler/poppler/-/issues/1137
4587 : GByte *pabyRet = nullptr;
4588 : vsi_l_offset nSize = 0;
4589 : if (VSIIngestFile(fp.get(), pszFilename, &pabyRet, &nSize,
4590 : 10 * 1024 * 1024))
4591 : {
4592 : // Replace nul byte by something else so that strstr() works
4593 : for (size_t i = 0; i < nSize; i++)
4594 : {
4595 : if (pabyRet[i] == 0)
4596 : pabyRet[i] = ' ';
4597 : }
4598 : if (strstr(reinterpret_cast<const char *>(pabyRet),
4599 : "/JBIG2Decode"))
4600 : {
4601 : CPLError(CE_Failure, CPLE_AppDefined,
4602 : "/JBIG2Decode found. Giving up due to potential "
4603 : "very long processing time.");
4604 : CPLFree(pabyRet);
4605 : return nullptr;
4606 : }
4607 : }
4608 : CPLFree(pabyRet);
4609 : }
4610 : #endif
4611 :
4612 192 : fp.reset(VSICreateBufferedReaderHandle(fp.release()));
4613 : while (true)
4614 : {
4615 192 : fp->Seek(0, SEEK_SET);
4616 192 : g_nPopplerErrors = 0;
4617 192 : if (globalParamsCreatedByGDAL)
4618 192 : registerErrorCallback();
4619 192 : Object oObj;
4620 : auto poStream =
4621 192 : new VSIPDFFileStream(fp.get(), pszFilename, std::move(oObj));
4622 : #if POPPLER_MAJOR_VERSION > 22 || \
4623 : (POPPLER_MAJOR_VERSION == 22 && POPPLER_MINOR_VERSION > 2)
4624 : std::optional<GooString> osUserPwd;
4625 : if (pszUserPwd)
4626 : osUserPwd = std::optional<GooString>(pszUserPwd);
4627 : try
4628 : {
4629 : poDocPoppler =
4630 : new PDFDoc(poStream, std::optional<GooString>(), osUserPwd);
4631 : }
4632 : catch (const std::exception &e)
4633 : {
4634 : CPLError(CE_Failure, CPLE_AppDefined,
4635 : "PDFDoc::PDFDoc() failed with %s", e.what());
4636 : return nullptr;
4637 : }
4638 : #else
4639 192 : GooString *poUserPwd = nullptr;
4640 192 : if (pszUserPwd)
4641 2 : poUserPwd = new GooString(pszUserPwd);
4642 192 : poDocPoppler = new PDFDoc(poStream, nullptr, poUserPwd);
4643 192 : delete poUserPwd;
4644 : #endif
4645 192 : if (globalParamsCreatedByGDAL)
4646 192 : registerErrorCallback();
4647 192 : if (g_nPopplerErrors >= MAX_POPPLER_ERRORS)
4648 : {
4649 0 : PDFFreeDoc(poDocPoppler);
4650 0 : return nullptr;
4651 : }
4652 :
4653 192 : if (!poDocPoppler->isOk() || poDocPoppler->getNumPages() == 0)
4654 : {
4655 2 : if (poDocPoppler->getErrorCode() == errEncrypted)
4656 : {
4657 2 : if (pszUserPwd && EQUAL(pszUserPwd, "ASK_INTERACTIVE"))
4658 : {
4659 : pszUserPwd =
4660 0 : PDFEnterPasswordFromConsoleIfNeeded(pszUserPwd);
4661 0 : PDFFreeDoc(poDocPoppler);
4662 :
4663 : /* Reset errors that could have been issued during
4664 : * opening and that */
4665 : /* did not result in an invalid document */
4666 0 : CPLErrorReset();
4667 :
4668 0 : continue;
4669 : }
4670 2 : else if (pszUserPwd == nullptr)
4671 : {
4672 1 : CPLError(CE_Failure, CPLE_AppDefined,
4673 : "A password is needed. You can specify it "
4674 : "through the PDF_USER_PWD "
4675 : "configuration option / USER_PWD open option "
4676 : "(that can be set to ASK_INTERACTIVE)");
4677 : }
4678 : else
4679 : {
4680 1 : CPLError(CE_Failure, CPLE_AppDefined,
4681 : "Invalid password");
4682 : }
4683 : }
4684 : else
4685 : {
4686 0 : CPLError(CE_Failure, CPLE_AppDefined, "Invalid PDF");
4687 : }
4688 :
4689 2 : PDFFreeDoc(poDocPoppler);
4690 2 : return nullptr;
4691 : }
4692 190 : else if (poDocPoppler->isLinearized() &&
4693 0 : !poStream->FoundLinearizedHint())
4694 : {
4695 : // This is a likely defect of poppler Linearization.cc file that
4696 : // recognizes a file as linearized if the /Linearized hint is
4697 : // missing, but the content of this dictionary are present. But
4698 : // given the hacks of PDFFreeDoc() and
4699 : // VSIPDFFileStream::FillBuffer() opening such a file will
4700 : // result in a null-ptr deref at closing if we try to access a
4701 : // page and build the page cache, so just exit now
4702 0 : CPLError(CE_Failure, CPLE_AppDefined, "Invalid PDF");
4703 :
4704 0 : PDFFreeDoc(poDocPoppler);
4705 0 : return nullptr;
4706 : }
4707 : else
4708 : {
4709 190 : break;
4710 : }
4711 0 : }
4712 :
4713 190 : poCatalogPoppler = poDocPoppler->getCatalog();
4714 190 : if (poCatalogPoppler == nullptr || !poCatalogPoppler->isOk())
4715 : {
4716 0 : CPLError(CE_Failure, CPLE_AppDefined,
4717 : "Invalid PDF : invalid catalog");
4718 0 : PDFFreeDoc(poDocPoppler);
4719 0 : return nullptr;
4720 : }
4721 :
4722 190 : nPages = poDocPoppler->getNumPages();
4723 :
4724 190 : if (iPage == 1 && nPages > 10000 &&
4725 0 : CPLTestBool(CPLGetConfigOption("GDAL_PDF_LIMIT_PAGE_COUNT", "YES")))
4726 : {
4727 0 : CPLError(CE_Warning, CPLE_AppDefined,
4728 : "This PDF document reports %d pages. "
4729 : "Limiting count to 10000 for performance reasons. "
4730 : "You may remove this limit by setting the "
4731 : "GDAL_PDF_LIMIT_PAGE_COUNT configuration option to NO",
4732 : nPages);
4733 0 : nPages = 10000;
4734 : }
4735 :
4736 190 : if (iPage < 1 || iPage > nPages)
4737 : {
4738 1 : CPLError(CE_Failure, CPLE_AppDefined, "Invalid page number (%d/%d)",
4739 : iPage, nPages);
4740 1 : PDFFreeDoc(poDocPoppler);
4741 1 : return nullptr;
4742 : }
4743 :
4744 : /* Sanity check to validate page count */
4745 189 : if (iPage > 1 && nPages <= 10000 && iPage != nPages)
4746 : {
4747 4 : poPagePoppler = poCatalogPoppler->getPage(nPages);
4748 4 : if (poPagePoppler == nullptr || !poPagePoppler->isOk())
4749 : {
4750 0 : CPLError(CE_Failure, CPLE_AppDefined,
4751 : "Invalid PDF : invalid page count");
4752 0 : PDFFreeDoc(poDocPoppler);
4753 0 : return nullptr;
4754 : }
4755 : }
4756 :
4757 189 : poPagePoppler = poCatalogPoppler->getPage(iPage);
4758 189 : if (poPagePoppler == nullptr || !poPagePoppler->isOk())
4759 : {
4760 0 : CPLError(CE_Failure, CPLE_AppDefined, "Invalid PDF : invalid page");
4761 0 : PDFFreeDoc(poDocPoppler);
4762 0 : return nullptr;
4763 : }
4764 :
4765 : /* Here's the dirty part: this is a private member */
4766 : /* so we had to #define private public to get it ! */
4767 189 : Object &oPageObj = poPagePoppler->pageObj;
4768 189 : if (!oPageObj.isDict())
4769 : {
4770 0 : CPLError(CE_Failure, CPLE_AppDefined,
4771 : "Invalid PDF : !oPageObj.isDict()");
4772 0 : PDFFreeDoc(poDocPoppler);
4773 0 : return nullptr;
4774 : }
4775 :
4776 189 : poPageObj = new GDALPDFObjectPoppler(&oPageObj, FALSE);
4777 189 : Ref *poPageRef = poCatalogPoppler->getPageRef(iPage);
4778 189 : if (poPageRef != nullptr)
4779 : {
4780 378 : cpl::down_cast<GDALPDFObjectPoppler *>(poPageObj)->SetRefNumAndGen(
4781 378 : GDALPDFObjectNum(poPageRef->num), poPageRef->gen);
4782 : }
4783 : }
4784 : #endif // ~ HAVE_POPPLER
4785 :
4786 : #ifdef HAVE_PODOFO
4787 : if (bUseLib.test(PDFLIB_PODOFO) && poPageObj == nullptr)
4788 : {
4789 : #if !(PODOFO_VERSION_MAJOR > 0 || \
4790 : (PODOFO_VERSION_MAJOR == 0 && PODOFO_VERSION_MINOR >= 10))
4791 : PoDoFo::PdfError::EnableDebug(false);
4792 : PoDoFo::PdfError::EnableLogging(false);
4793 : #endif
4794 :
4795 : poDocPodofo = std::make_unique<PoDoFo::PdfMemDocument>();
4796 : try
4797 : {
4798 : poDocPodofo->Load(pszFilename);
4799 : }
4800 : catch (PoDoFo::PdfError &oError)
4801 : {
4802 : #if PODOFO_VERSION_MAJOR > 0 || \
4803 : (PODOFO_VERSION_MAJOR == 0 && PODOFO_VERSION_MINOR >= 10)
4804 : if (oError.GetCode() == PoDoFo::PdfErrorCode::InvalidPassword)
4805 : #else
4806 : if (oError.GetError() == PoDoFo::ePdfError_InvalidPassword)
4807 : #endif
4808 : {
4809 : if (pszUserPwd)
4810 : {
4811 : pszUserPwd =
4812 : PDFEnterPasswordFromConsoleIfNeeded(pszUserPwd);
4813 :
4814 : try
4815 : {
4816 : #if PODOFO_VERSION_MAJOR > 0 || \
4817 : (PODOFO_VERSION_MAJOR == 0 && PODOFO_VERSION_MINOR >= 10)
4818 : poDocPodofo =
4819 : std::make_unique<PoDoFo::PdfMemDocument>();
4820 : poDocPodofo->Load(pszFilename, pszUserPwd);
4821 : #else
4822 : poDocPodofo->SetPassword(pszUserPwd);
4823 : #endif
4824 : }
4825 : catch (PoDoFo::PdfError &oError2)
4826 : {
4827 : #if PODOFO_VERSION_MAJOR > 0 || \
4828 : (PODOFO_VERSION_MAJOR == 0 && PODOFO_VERSION_MINOR >= 10)
4829 : if (oError2.GetCode() ==
4830 : PoDoFo::PdfErrorCode::InvalidPassword)
4831 : #else
4832 : if (oError2.GetError() ==
4833 : PoDoFo::ePdfError_InvalidPassword)
4834 : #endif
4835 : {
4836 : CPLError(CE_Failure, CPLE_AppDefined,
4837 : "Invalid password");
4838 : }
4839 : else
4840 : {
4841 : CPLError(CE_Failure, CPLE_AppDefined,
4842 : "Invalid PDF : %s", oError2.what());
4843 : }
4844 : return nullptr;
4845 : }
4846 : catch (...)
4847 : {
4848 : CPLError(CE_Failure, CPLE_AppDefined, "Invalid PDF");
4849 : return nullptr;
4850 : }
4851 : }
4852 : else
4853 : {
4854 : CPLError(CE_Failure, CPLE_AppDefined,
4855 : "A password is needed. You can specify it through "
4856 : "the PDF_USER_PWD "
4857 : "configuration option / USER_PWD open option "
4858 : "(that can be set to ASK_INTERACTIVE)");
4859 : return nullptr;
4860 : }
4861 : }
4862 : else
4863 : {
4864 : CPLError(CE_Failure, CPLE_AppDefined, "Invalid PDF : %s",
4865 : oError.what());
4866 : return nullptr;
4867 : }
4868 : }
4869 : catch (...)
4870 : {
4871 : CPLError(CE_Failure, CPLE_AppDefined, "Invalid PDF");
4872 : return nullptr;
4873 : }
4874 :
4875 : #if PODOFO_VERSION_MAJOR > 0 || \
4876 : (PODOFO_VERSION_MAJOR == 0 && PODOFO_VERSION_MINOR >= 10)
4877 : auto &oPageCollections = poDocPodofo->GetPages();
4878 : nPages = static_cast<int>(oPageCollections.GetCount());
4879 : #else
4880 : nPages = poDocPodofo->GetPageCount();
4881 : #endif
4882 : if (iPage < 1 || iPage > nPages)
4883 : {
4884 : CPLError(CE_Failure, CPLE_AppDefined, "Invalid page number (%d/%d)",
4885 : iPage, nPages);
4886 : return nullptr;
4887 : }
4888 :
4889 : try
4890 : {
4891 : #if PODOFO_VERSION_MAJOR > 0 || \
4892 : (PODOFO_VERSION_MAJOR == 0 && PODOFO_VERSION_MINOR >= 10)
4893 : /* Sanity check to validate page count */
4894 : if (iPage != nPages)
4895 : CPL_IGNORE_RET_VAL(oPageCollections.GetPageAt(nPages - 1));
4896 :
4897 : poPagePodofo = &oPageCollections.GetPageAt(iPage - 1);
4898 : #else
4899 : /* Sanity check to validate page count */
4900 : if (iPage != nPages)
4901 : CPL_IGNORE_RET_VAL(poDocPodofo->GetPage(nPages - 1));
4902 :
4903 : poPagePodofo = poDocPodofo->GetPage(iPage - 1);
4904 : #endif
4905 : }
4906 : catch (PoDoFo::PdfError &oError)
4907 : {
4908 : CPLError(CE_Failure, CPLE_AppDefined, "Invalid PDF : %s",
4909 : oError.what());
4910 : return nullptr;
4911 : }
4912 : catch (...)
4913 : {
4914 : CPLError(CE_Failure, CPLE_AppDefined, "Invalid PDF");
4915 : return nullptr;
4916 : }
4917 :
4918 : if (poPagePodofo == nullptr)
4919 : {
4920 : CPLError(CE_Failure, CPLE_AppDefined, "Invalid PDF : invalid page");
4921 : return nullptr;
4922 : }
4923 :
4924 : #if PODOFO_VERSION_MAJOR > 0 || \
4925 : (PODOFO_VERSION_MAJOR == 0 && PODOFO_VERSION_MINOR >= 10)
4926 : const PoDoFo::PdfObject *pObj = &poPagePodofo->GetObject();
4927 : #else
4928 : const PoDoFo::PdfObject *pObj = poPagePodofo->GetObject();
4929 : #endif
4930 : poPageObj = new GDALPDFObjectPodofo(pObj, poDocPodofo->GetObjects());
4931 : }
4932 : #endif // ~ HAVE_PODOFO
4933 :
4934 : #ifdef HAVE_PDFIUM
4935 434 : if (bUseLib.test(PDFLIB_PDFIUM) && poPageObj == nullptr)
4936 : {
4937 245 : if (!LoadPdfiumDocumentPage(pszFilename, pszUserPwd, iPage,
4938 : &poDocPdfium, &poPagePdfium, &nPages))
4939 : {
4940 : // CPLError is called inside function
4941 14 : return nullptr;
4942 : }
4943 :
4944 231 : const auto pageObj = poPagePdfium->page->GetDict();
4945 231 : if (pageObj == nullptr)
4946 : {
4947 0 : CPLError(CE_Failure, CPLE_AppDefined,
4948 : "Invalid PDF : invalid page object");
4949 0 : UnloadPdfiumDocumentPage(&poDocPdfium, &poPagePdfium);
4950 0 : return nullptr;
4951 : }
4952 231 : poPageObj = GDALPDFObjectPdfium::Build(pageObj);
4953 : }
4954 : #endif // ~ HAVE_PDFIUM
4955 :
4956 420 : if (poPageObj == nullptr)
4957 0 : return nullptr;
4958 420 : GDALPDFDictionary *poPageDict = poPageObj->GetDictionary();
4959 420 : if (poPageDict == nullptr)
4960 : {
4961 0 : delete poPageObj;
4962 :
4963 0 : CPLError(CE_Failure, CPLE_AppDefined,
4964 : "Invalid PDF : poPageDict == nullptr");
4965 : #ifdef HAVE_POPPLER
4966 0 : if (bUseLib.test(PDFLIB_POPPLER))
4967 0 : PDFFreeDoc(poDocPoppler);
4968 : #endif
4969 : #ifdef HAVE_PDFIUM
4970 0 : if (bUseLib.test(PDFLIB_PDFIUM))
4971 : {
4972 0 : UnloadPdfiumDocumentPage(&poDocPdfium, &poPagePdfium);
4973 : }
4974 : #endif
4975 0 : return nullptr;
4976 : }
4977 :
4978 420 : const char *pszDumpObject = CPLGetConfigOption("PDF_DUMP_OBJECT", nullptr);
4979 420 : if (pszDumpObject != nullptr)
4980 : {
4981 4 : GDALPDFDumper oDumper(pszFilename, pszDumpObject);
4982 2 : oDumper.Dump(poPageObj);
4983 : }
4984 :
4985 420 : PDFDataset *poDS = new PDFDataset();
4986 420 : poDS->m_fp = std::move(fp);
4987 420 : poDS->papszOpenOptions = CSLDuplicate(poOpenInfo->papszOpenOptions);
4988 420 : poDS->m_bUseLib = bUseLib;
4989 420 : poDS->m_osFilename = pszFilename;
4990 420 : poDS->eAccess = poOpenInfo->eAccess;
4991 :
4992 420 : if (nPages > 1 && !bOpenSubdataset)
4993 : {
4994 : int i;
4995 8 : CPLStringList aosList;
4996 16 : for (i = 0; i < nPages; i++)
4997 : {
4998 : char szKey[32];
4999 12 : snprintf(szKey, sizeof(szKey), "SUBDATASET_%d_NAME", i + 1);
5000 : aosList.AddNameValue(
5001 12 : szKey, CPLSPrintf("PDF:%d:%s", i + 1, poOpenInfo->pszFilename));
5002 12 : snprintf(szKey, sizeof(szKey), "SUBDATASET_%d_DESC", i + 1);
5003 : aosList.AddNameValue(szKey, CPLSPrintf("Page %d of %s", i + 1,
5004 12 : poOpenInfo->pszFilename));
5005 : }
5006 4 : poDS->SetMetadata(aosList.List(), "SUBDATASETS");
5007 : }
5008 :
5009 : #ifdef HAVE_POPPLER
5010 420 : poDS->m_poDocPoppler = poDocPoppler;
5011 : #endif
5012 : #ifdef HAVE_PODOFO
5013 : poDS->m_poDocPodofo = poDocPodofo.release();
5014 : #endif
5015 : #ifdef HAVE_PDFIUM
5016 420 : poDS->m_poDocPdfium = poDocPdfium;
5017 420 : poDS->m_poPagePdfium = poPagePdfium;
5018 : #endif
5019 420 : poDS->m_poPageObj = poPageObj;
5020 420 : poDS->m_osUserPwd = pszUserPwd ? pszUserPwd : "";
5021 420 : poDS->m_iPage = iPage;
5022 :
5023 : const char *pszDumpCatalog =
5024 420 : CPLGetConfigOption("PDF_DUMP_CATALOG", nullptr);
5025 420 : if (pszDumpCatalog != nullptr)
5026 : {
5027 0 : GDALPDFDumper oDumper(pszFilename, pszDumpCatalog);
5028 0 : auto poCatalog = poDS->GetCatalog();
5029 0 : if (poCatalog)
5030 0 : oDumper.Dump(poCatalog);
5031 : }
5032 :
5033 420 : int nBandsGuessed = 0;
5034 420 : if (nImageNum < 0)
5035 : {
5036 420 : poDS->GuessDPI(poPageDict, &nBandsGuessed);
5037 420 : if (nBandsGuessed < 4)
5038 404 : nBandsGuessed = 0;
5039 : }
5040 : else
5041 : {
5042 : const char *pszDPI =
5043 0 : GetOption(poOpenInfo->papszOpenOptions, "DPI", nullptr);
5044 0 : if (pszDPI != nullptr)
5045 : {
5046 : // coverity[tainted_data]
5047 0 : poDS->m_dfDPI = CPLAtof(pszDPI);
5048 : }
5049 : }
5050 :
5051 420 : double dfX1 = 0.0;
5052 420 : double dfY1 = 0.0;
5053 420 : double dfX2 = 0.0;
5054 420 : double dfY2 = 0.0;
5055 :
5056 : #ifdef HAVE_POPPLER
5057 420 : if (bUseLib.test(PDFLIB_POPPLER))
5058 : {
5059 189 : const auto *psMediaBox = poPagePoppler->getMediaBox();
5060 189 : dfX1 = psMediaBox->x1;
5061 189 : dfY1 = psMediaBox->y1;
5062 189 : dfX2 = psMediaBox->x2;
5063 189 : dfY2 = psMediaBox->y2;
5064 : }
5065 : #endif
5066 :
5067 : #ifdef HAVE_PODOFO
5068 : if (bUseLib.test(PDFLIB_PODOFO))
5069 : {
5070 : CPLAssert(poPagePodofo);
5071 : auto oMediaBox = poPagePodofo->GetMediaBox();
5072 : dfX1 = oMediaBox.GetLeft();
5073 : dfY1 = oMediaBox.GetBottom();
5074 : #if PODOFO_VERSION_MAJOR > 0 || \
5075 : (PODOFO_VERSION_MAJOR == 0 && PODOFO_VERSION_MINOR >= 10)
5076 : dfX2 = dfX1 + oMediaBox.Width;
5077 : dfY2 = dfY1 + oMediaBox.Height;
5078 : #else
5079 : dfX2 = dfX1 + oMediaBox.GetWidth();
5080 : dfY2 = dfY1 + oMediaBox.GetHeight();
5081 : #endif
5082 : }
5083 : #endif
5084 :
5085 : #ifdef HAVE_PDFIUM
5086 420 : if (bUseLib.test(PDFLIB_PDFIUM))
5087 : {
5088 231 : CPLAssert(poPagePdfium);
5089 231 : CFX_FloatRect rect = poPagePdfium->page->GetBBox();
5090 231 : dfX1 = rect.left;
5091 231 : dfX2 = rect.right;
5092 231 : dfY1 = rect.bottom;
5093 231 : dfY2 = rect.top;
5094 : }
5095 : #endif // ~ HAVE_PDFIUM
5096 :
5097 420 : double dfUserUnit = poDS->m_dfDPI * USER_UNIT_IN_INCH;
5098 420 : poDS->m_dfPageWidth = dfX2 - dfX1;
5099 420 : poDS->m_dfPageHeight = dfY2 - dfY1;
5100 : // CPLDebug("PDF", "left=%f right=%f bottom=%f top=%f", dfX1, dfX2, dfY1,
5101 : // dfY2);
5102 420 : const double dfXSize = floor((dfX2 - dfX1) * dfUserUnit + 0.5);
5103 420 : const double dfYSize = floor((dfY2 - dfY1) * dfUserUnit + 0.5);
5104 420 : if (!(dfXSize >= 0 && dfXSize <= INT_MAX && dfYSize >= 0 &&
5105 420 : dfYSize <= INT_MAX))
5106 : {
5107 0 : delete poDS;
5108 0 : return nullptr;
5109 : }
5110 420 : poDS->nRasterXSize = static_cast<int>(dfXSize);
5111 420 : poDS->nRasterYSize = static_cast<int>(dfYSize);
5112 :
5113 420 : if (!GDALCheckDatasetDimensions(poDS->nRasterXSize, poDS->nRasterYSize))
5114 : {
5115 0 : delete poDS;
5116 0 : return nullptr;
5117 : }
5118 :
5119 420 : double dfRotation = 0;
5120 : #ifdef HAVE_POPPLER
5121 420 : if (bUseLib.test(PDFLIB_POPPLER))
5122 189 : dfRotation = poDocPoppler->getPageRotate(iPage);
5123 : #endif
5124 :
5125 : #ifdef HAVE_PODOFO
5126 : if (bUseLib.test(PDFLIB_PODOFO))
5127 : {
5128 : CPLAssert(poPagePodofo);
5129 : #if PODOFO_VERSION_MAJOR > 0 || \
5130 : (PODOFO_VERSION_MAJOR == 0 && PODOFO_VERSION_MINOR >= 10)
5131 : dfRotation = poPagePodofo->GetRotationRaw();
5132 : #else
5133 : dfRotation = poPagePodofo->GetRotation();
5134 : #endif
5135 : }
5136 : #endif
5137 :
5138 : #ifdef HAVE_PDFIUM
5139 420 : if (bUseLib.test(PDFLIB_PDFIUM))
5140 : {
5141 231 : CPLAssert(poPagePdfium);
5142 231 : dfRotation = poPagePdfium->page->GetPageRotation() * 90;
5143 : }
5144 : #endif
5145 :
5146 420 : if (dfRotation == 90 || dfRotation == -90 || dfRotation == 270)
5147 : {
5148 : /* FIXME: the podofo case should be implemented. This needs to rotate */
5149 : /* the output of pdftoppm */
5150 : #if defined(HAVE_POPPLER) || defined(HAVE_PDFIUM)
5151 0 : if (bUseLib.test(PDFLIB_POPPLER) || bUseLib.test(PDFLIB_PDFIUM))
5152 : {
5153 0 : int nTmp = poDS->nRasterXSize;
5154 0 : poDS->nRasterXSize = poDS->nRasterYSize;
5155 0 : poDS->nRasterYSize = nTmp;
5156 : }
5157 : #endif
5158 : }
5159 :
5160 420 : if (CSLFetchNameValue(poOpenInfo->papszOpenOptions, "@OPEN_FOR_OVERVIEW"))
5161 : {
5162 2 : poDS->m_nBlockXSize = 512;
5163 2 : poDS->m_nBlockYSize = 512;
5164 : }
5165 : /* Check if the PDF is only made of regularly tiled images */
5166 : /* (like some USGS GeoPDF production) */
5167 757 : else if (dfRotation == 0.0 && !poDS->m_asTiles.empty() &&
5168 339 : EQUAL(GetOption(poOpenInfo->papszOpenOptions, "LAYERS", "ALL"),
5169 : "ALL"))
5170 : {
5171 339 : poDS->CheckTiledRaster();
5172 339 : if (!poDS->m_aiTiles.empty())
5173 18 : poDS->SetMetadataItem("INTERLEAVE", "PIXEL", "IMAGE_STRUCTURE");
5174 : }
5175 :
5176 420 : GDALPDFObject *poLGIDict = nullptr;
5177 420 : GDALPDFObject *poVP = nullptr;
5178 420 : int bIsOGCBP = FALSE;
5179 420 : if ((poLGIDict = poPageDict->Get("LGIDict")) != nullptr && nImageNum < 0)
5180 : {
5181 : /* Cf 08-139r3_GeoPDF_Encoding_Best_Practice_Version_2.2.pdf */
5182 32 : CPLDebug("PDF", "OGC Encoding Best Practice style detected");
5183 32 : if (poDS->ParseLGIDictObject(poLGIDict))
5184 : {
5185 32 : if (poDS->m_bHasCTM)
5186 : {
5187 26 : if (dfRotation == 90)
5188 : {
5189 0 : poDS->m_adfGeoTransform[0] = poDS->m_adfCTM[4];
5190 0 : poDS->m_adfGeoTransform[1] = poDS->m_adfCTM[2] / dfUserUnit;
5191 0 : poDS->m_adfGeoTransform[2] = poDS->m_adfCTM[0] / dfUserUnit;
5192 0 : poDS->m_adfGeoTransform[3] = poDS->m_adfCTM[5];
5193 0 : poDS->m_adfGeoTransform[4] = poDS->m_adfCTM[3] / dfUserUnit;
5194 0 : poDS->m_adfGeoTransform[5] = poDS->m_adfCTM[1] / dfUserUnit;
5195 : }
5196 26 : else if (dfRotation == -90 || dfRotation == 270)
5197 : {
5198 0 : poDS->m_adfGeoTransform[0] =
5199 0 : poDS->m_adfCTM[4] +
5200 0 : poDS->m_adfCTM[2] * poDS->m_dfPageHeight +
5201 0 : poDS->m_adfCTM[0] * poDS->m_dfPageWidth;
5202 0 : poDS->m_adfGeoTransform[1] =
5203 0 : -poDS->m_adfCTM[2] / dfUserUnit;
5204 0 : poDS->m_adfGeoTransform[2] =
5205 0 : -poDS->m_adfCTM[0] / dfUserUnit;
5206 0 : poDS->m_adfGeoTransform[3] =
5207 0 : poDS->m_adfCTM[5] +
5208 0 : poDS->m_adfCTM[3] * poDS->m_dfPageHeight +
5209 0 : poDS->m_adfCTM[1] * poDS->m_dfPageWidth;
5210 0 : poDS->m_adfGeoTransform[4] =
5211 0 : -poDS->m_adfCTM[3] / dfUserUnit;
5212 0 : poDS->m_adfGeoTransform[5] =
5213 0 : -poDS->m_adfCTM[1] / dfUserUnit;
5214 : }
5215 : else
5216 : {
5217 26 : poDS->m_adfGeoTransform[0] = poDS->m_adfCTM[4] +
5218 26 : poDS->m_adfCTM[2] * dfY2 +
5219 26 : poDS->m_adfCTM[0] * dfX1;
5220 26 : poDS->m_adfGeoTransform[1] = poDS->m_adfCTM[0] / dfUserUnit;
5221 52 : poDS->m_adfGeoTransform[2] =
5222 26 : -poDS->m_adfCTM[2] / dfUserUnit;
5223 26 : poDS->m_adfGeoTransform[3] = poDS->m_adfCTM[5] +
5224 26 : poDS->m_adfCTM[3] * dfY2 +
5225 26 : poDS->m_adfCTM[1] * dfX1;
5226 26 : poDS->m_adfGeoTransform[4] = poDS->m_adfCTM[1] / dfUserUnit;
5227 26 : poDS->m_adfGeoTransform[5] =
5228 26 : -poDS->m_adfCTM[3] / dfUserUnit;
5229 : }
5230 :
5231 26 : poDS->m_bGeoTransformValid = true;
5232 : }
5233 :
5234 32 : bIsOGCBP = TRUE;
5235 :
5236 : int i;
5237 62 : for (i = 0; i < poDS->m_nGCPCount; i++)
5238 : {
5239 30 : if (dfRotation == 90)
5240 : {
5241 0 : double dfPixel =
5242 0 : poDS->m_pasGCPList[i].dfGCPPixel * dfUserUnit;
5243 0 : double dfLine =
5244 0 : poDS->m_pasGCPList[i].dfGCPLine * dfUserUnit;
5245 0 : poDS->m_pasGCPList[i].dfGCPPixel = dfLine;
5246 0 : poDS->m_pasGCPList[i].dfGCPLine = dfPixel;
5247 : }
5248 30 : else if (dfRotation == -90 || dfRotation == 270)
5249 : {
5250 0 : double dfPixel =
5251 0 : poDS->m_pasGCPList[i].dfGCPPixel * dfUserUnit;
5252 0 : double dfLine =
5253 0 : poDS->m_pasGCPList[i].dfGCPLine * dfUserUnit;
5254 0 : poDS->m_pasGCPList[i].dfGCPPixel =
5255 0 : poDS->nRasterXSize - dfLine;
5256 0 : poDS->m_pasGCPList[i].dfGCPLine =
5257 0 : poDS->nRasterYSize - dfPixel;
5258 : }
5259 : else
5260 : {
5261 30 : poDS->m_pasGCPList[i].dfGCPPixel =
5262 30 : (-dfX1 + poDS->m_pasGCPList[i].dfGCPPixel) * dfUserUnit;
5263 30 : poDS->m_pasGCPList[i].dfGCPLine =
5264 30 : (dfY2 - poDS->m_pasGCPList[i].dfGCPLine) * dfUserUnit;
5265 : }
5266 : }
5267 : }
5268 : }
5269 388 : else if ((poVP = poPageDict->Get("VP")) != nullptr && nImageNum < 0)
5270 : {
5271 : /* Cf adobe_supplement_iso32000.pdf */
5272 285 : CPLDebug("PDF", "Adobe ISO32000 style Geospatial PDF perhaps ?");
5273 285 : if (dfX1 != 0 || dfY1 != 0)
5274 : {
5275 0 : CPLDebug("PDF", "non null dfX1 or dfY1 values. untested case...");
5276 : }
5277 285 : poDS->ParseVP(poVP, dfX2 - dfX1, dfY2 - dfY1);
5278 : }
5279 : else
5280 : {
5281 : GDALPDFObject *poXObject =
5282 103 : poPageDict->LookupObject("Resources.XObject");
5283 :
5284 204 : if (poXObject != nullptr &&
5285 101 : poXObject->GetType() == PDFObjectType_Dictionary)
5286 : {
5287 101 : GDALPDFDictionary *poXObjectDict = poXObject->GetDictionary();
5288 101 : const auto &oMap = poXObjectDict->GetValues();
5289 101 : int nSubDataset = 0;
5290 406 : for (const auto &[osKey, poObj] : oMap)
5291 : {
5292 305 : if (poObj->GetType() == PDFObjectType_Dictionary)
5293 : {
5294 305 : GDALPDFDictionary *poDict = poObj->GetDictionary();
5295 305 : GDALPDFObject *poSubtype = nullptr;
5296 305 : GDALPDFObject *poMeasure = nullptr;
5297 305 : GDALPDFObject *poWidth = nullptr;
5298 305 : GDALPDFObject *poHeight = nullptr;
5299 305 : int nW = 0;
5300 305 : int nH = 0;
5301 305 : if ((poSubtype = poDict->Get("Subtype")) != nullptr &&
5302 610 : poSubtype->GetType() == PDFObjectType_Name &&
5303 305 : poSubtype->GetName() == "Image" &&
5304 260 : (poMeasure = poDict->Get("Measure")) != nullptr &&
5305 0 : poMeasure->GetType() == PDFObjectType_Dictionary &&
5306 0 : (poWidth = poDict->Get("Width")) != nullptr &&
5307 0 : poWidth->GetType() == PDFObjectType_Int &&
5308 0 : (nW = poWidth->GetInt()) > 0 &&
5309 0 : (poHeight = poDict->Get("Height")) != nullptr &&
5310 610 : poHeight->GetType() == PDFObjectType_Int &&
5311 0 : (nH = poHeight->GetInt()) > 0)
5312 : {
5313 0 : if (nImageNum < 0)
5314 0 : CPLDebug("PDF",
5315 : "Measure found on Image object (%d)",
5316 0 : poObj->GetRefNum().toInt());
5317 :
5318 0 : GDALPDFObject *poColorSpace = poDict->Get("ColorSpace");
5319 : GDALPDFObject *poBitsPerComponent =
5320 0 : poDict->Get("BitsPerComponent");
5321 0 : if (poObj->GetRefNum().toBool() &&
5322 0 : poObj->GetRefGen() == 0 &&
5323 0 : poColorSpace != nullptr &&
5324 0 : poColorSpace->GetType() == PDFObjectType_Name &&
5325 0 : (poColorSpace->GetName() == "DeviceGray" ||
5326 0 : poColorSpace->GetName() == "DeviceRGB") &&
5327 0 : (poBitsPerComponent == nullptr ||
5328 0 : (poBitsPerComponent->GetType() ==
5329 0 : PDFObjectType_Int &&
5330 0 : poBitsPerComponent->GetInt() == 8)))
5331 : {
5332 0 : if (nImageNum < 0)
5333 : {
5334 0 : nSubDataset++;
5335 0 : poDS->SetMetadataItem(
5336 : CPLSPrintf("SUBDATASET_%d_NAME",
5337 : nSubDataset),
5338 : CPLSPrintf("PDF_IMAGE:%d:%d:%s", iPage,
5339 0 : poObj->GetRefNum().toInt(),
5340 : pszFilename),
5341 : "SUBDATASETS");
5342 0 : poDS->SetMetadataItem(
5343 : CPLSPrintf("SUBDATASET_%d_DESC",
5344 : nSubDataset),
5345 : CPLSPrintf("Georeferenced image of size "
5346 : "%dx%d of page %d of %s",
5347 : nW, nH, iPage, pszFilename),
5348 : "SUBDATASETS");
5349 : }
5350 0 : else if (poObj->GetRefNum().toInt() == nImageNum)
5351 : {
5352 0 : poDS->nRasterXSize = nW;
5353 0 : poDS->nRasterYSize = nH;
5354 0 : poDS->ParseMeasure(poMeasure, nW, nH, 0, nH, nW,
5355 : 0);
5356 0 : poDS->m_poImageObj = poObj;
5357 0 : if (poColorSpace->GetName() == "DeviceGray")
5358 0 : nBandsGuessed = 1;
5359 0 : break;
5360 : }
5361 : }
5362 : }
5363 : }
5364 : }
5365 : }
5366 :
5367 103 : if (nImageNum >= 0 && poDS->m_poImageObj == nullptr)
5368 : {
5369 0 : CPLError(CE_Failure, CPLE_AppDefined, "Cannot find image %d",
5370 : nImageNum);
5371 0 : delete poDS;
5372 0 : return nullptr;
5373 : }
5374 :
5375 : /* Not a geospatial PDF doc */
5376 : }
5377 :
5378 : /* If pixel size or top left coordinates are very close to an int, round
5379 : * them to the int */
5380 420 : double dfEps = (fabs(poDS->m_adfGeoTransform[0]) > 1e5 &&
5381 235 : fabs(poDS->m_adfGeoTransform[3]) > 1e5)
5382 655 : ? 1e-5
5383 420 : : 1e-8;
5384 840 : poDS->m_adfGeoTransform[0] =
5385 420 : ROUND_IF_CLOSE(poDS->m_adfGeoTransform[0], dfEps);
5386 420 : poDS->m_adfGeoTransform[1] = ROUND_IF_CLOSE(poDS->m_adfGeoTransform[1]);
5387 840 : poDS->m_adfGeoTransform[3] =
5388 420 : ROUND_IF_CLOSE(poDS->m_adfGeoTransform[3], dfEps);
5389 420 : poDS->m_adfGeoTransform[5] = ROUND_IF_CLOSE(poDS->m_adfGeoTransform[5]);
5390 :
5391 420 : if (bUseLib.test(PDFLIB_PDFIUM))
5392 : {
5393 : // Attempt to "fix" the loss of precision due to the use of float32 for
5394 : // numbers by pdfium
5395 231 : if ((fabs(poDS->m_adfGeoTransform[0]) > 1e5 ||
5396 105 : fabs(poDS->m_adfGeoTransform[3]) > 1e5) &&
5397 126 : fabs(poDS->m_adfGeoTransform[0] -
5398 126 : std::round(poDS->m_adfGeoTransform[0])) <
5399 126 : 1e-6 * fabs(poDS->m_adfGeoTransform[0]) &&
5400 122 : fabs(poDS->m_adfGeoTransform[1] -
5401 122 : std::round(poDS->m_adfGeoTransform[1])) <
5402 122 : 1e-3 * fabs(poDS->m_adfGeoTransform[1]) &&
5403 97 : fabs(poDS->m_adfGeoTransform[3] -
5404 97 : std::round(poDS->m_adfGeoTransform[3])) <
5405 559 : 1e-6 * fabs(poDS->m_adfGeoTransform[3]) &&
5406 97 : fabs(poDS->m_adfGeoTransform[5] -
5407 97 : std::round(poDS->m_adfGeoTransform[5])) <
5408 97 : 1e-3 * fabs(poDS->m_adfGeoTransform[5]))
5409 : {
5410 679 : for (int i = 0; i < 6; i++)
5411 : {
5412 582 : poDS->m_adfGeoTransform[i] =
5413 582 : std::round(poDS->m_adfGeoTransform[i]);
5414 : }
5415 : }
5416 : }
5417 :
5418 420 : if (poDS->m_poNeatLine)
5419 : {
5420 316 : char *pszNeatLineWkt = nullptr;
5421 316 : OGRLinearRing *poRing = poDS->m_poNeatLine->getExteriorRing();
5422 : /* Adobe style is already in target SRS units */
5423 316 : if (bIsOGCBP)
5424 : {
5425 32 : int nPoints = poRing->getNumPoints();
5426 : int i;
5427 :
5428 204 : for (i = 0; i < nPoints; i++)
5429 : {
5430 : double x, y;
5431 172 : if (dfRotation == 90.0)
5432 : {
5433 0 : x = poRing->getY(i) * dfUserUnit;
5434 0 : y = poRing->getX(i) * dfUserUnit;
5435 : }
5436 172 : else if (dfRotation == -90.0 || dfRotation == 270.0)
5437 : {
5438 0 : x = poDS->nRasterXSize - poRing->getY(i) * dfUserUnit;
5439 0 : y = poDS->nRasterYSize - poRing->getX(i) * dfUserUnit;
5440 : }
5441 : else
5442 : {
5443 172 : x = (-dfX1 + poRing->getX(i)) * dfUserUnit;
5444 172 : y = (dfY2 - poRing->getY(i)) * dfUserUnit;
5445 : }
5446 172 : double X = poDS->m_adfGeoTransform[0] +
5447 172 : x * poDS->m_adfGeoTransform[1] +
5448 172 : y * poDS->m_adfGeoTransform[2];
5449 172 : double Y = poDS->m_adfGeoTransform[3] +
5450 172 : x * poDS->m_adfGeoTransform[4] +
5451 172 : y * poDS->m_adfGeoTransform[5];
5452 172 : poRing->setPoint(i, X, Y);
5453 : }
5454 : }
5455 316 : poRing->closeRings();
5456 :
5457 316 : poDS->m_poNeatLine->exportToWkt(&pszNeatLineWkt);
5458 316 : if (nImageNum < 0)
5459 316 : poDS->SetMetadataItem("NEATLINE", pszNeatLineWkt);
5460 316 : CPLFree(pszNeatLineWkt);
5461 : }
5462 :
5463 420 : poDS->MapOCGsToPages();
5464 :
5465 : #ifdef HAVE_POPPLER
5466 420 : if (bUseLib.test(PDFLIB_POPPLER))
5467 : {
5468 189 : auto poMetadata = poCatalogPoppler->readMetadata();
5469 189 : if (poMetadata)
5470 : {
5471 17 : const char *pszContent = poMetadata->c_str();
5472 17 : if (pszContent != nullptr &&
5473 17 : STARTS_WITH(pszContent, "<?xpacket begin="))
5474 : {
5475 17 : const char *const apszMDList[2] = {pszContent, nullptr};
5476 17 : poDS->SetMetadata(const_cast<char **>(apszMDList), "xml:XMP");
5477 : }
5478 : #if (POPPLER_MAJOR_VERSION < 21 || \
5479 : (POPPLER_MAJOR_VERSION == 21 && POPPLER_MINOR_VERSION < 10))
5480 17 : delete poMetadata;
5481 : #endif
5482 : }
5483 :
5484 : /* Read Info object */
5485 : /* The test is necessary since with some corrupted PDFs
5486 : * poDocPoppler->getDocInfo() */
5487 : /* might abort() */
5488 189 : if (poDocPoppler->getXRef()->isOk())
5489 : {
5490 378 : Object oInfo = poDocPoppler->getDocInfo();
5491 378 : GDALPDFObjectPoppler oInfoObjPoppler(&oInfo, FALSE);
5492 189 : poDS->ParseInfo(&oInfoObjPoppler);
5493 : }
5494 :
5495 : /* Find layers */
5496 366 : poDS->FindLayersPoppler(
5497 177 : (bOpenSubdataset || bOpenSubdatasetImage) ? iPage : 0);
5498 :
5499 : /* Turn user specified layers on or off */
5500 189 : poDS->TurnLayersOnOffPoppler();
5501 : }
5502 : #endif
5503 :
5504 : #ifdef HAVE_PODOFO
5505 : if (bUseLib.test(PDFLIB_PODOFO))
5506 : {
5507 : for (const auto &obj : poDS->m_poDocPodofo->GetObjects())
5508 : {
5509 : GDALPDFObjectPodofo oObjPodofo(obj,
5510 : poDS->m_poDocPodofo->GetObjects());
5511 : poDS->FindXMP(&oObjPodofo);
5512 : }
5513 :
5514 : /* Find layers */
5515 : poDS->FindLayersGeneric(poPageDict);
5516 :
5517 : /* Read Info object */
5518 : const PoDoFo::PdfInfo *poInfo = poDS->m_poDocPodofo->GetInfo();
5519 : if (poInfo != nullptr)
5520 : {
5521 : GDALPDFObjectPodofo oInfoObjPodofo(
5522 : #if PODOFO_VERSION_MAJOR > 0 || \
5523 : (PODOFO_VERSION_MAJOR == 0 && PODOFO_VERSION_MINOR >= 10)
5524 : &(poInfo->GetObject()),
5525 : #else
5526 : poInfo->GetObject(),
5527 : #endif
5528 : poDS->m_poDocPodofo->GetObjects());
5529 : poDS->ParseInfo(&oInfoObjPodofo);
5530 : }
5531 : }
5532 : #endif
5533 : #ifdef HAVE_PDFIUM
5534 420 : if (bUseLib.test(PDFLIB_PDFIUM))
5535 : {
5536 : // coverity is confused by WrapRetain(), believing that multiple
5537 : // smart pointers manage the same raw pointer. Which is actually
5538 : // true, but a RetainPtr holds a reference counted object. It is
5539 : // thus safe to have several RetainPtr holding it.
5540 : // coverity[multiple_init_smart_ptr]
5541 231 : GDALPDFObjectPdfium *poRoot = GDALPDFObjectPdfium::Build(
5542 462 : pdfium::WrapRetain(poDocPdfium->doc->GetRoot()));
5543 231 : if (poRoot->GetType() == PDFObjectType_Dictionary)
5544 : {
5545 231 : GDALPDFDictionary *poDict = poRoot->GetDictionary();
5546 231 : GDALPDFObject *poMetadata(poDict->Get("Metadata"));
5547 231 : if (poMetadata != nullptr)
5548 : {
5549 21 : GDALPDFStream *poStream = poMetadata->GetStream();
5550 21 : if (poStream != nullptr)
5551 : {
5552 19 : char *pszContent = poStream->GetBytes();
5553 19 : const auto nLength = poStream->GetLength();
5554 19 : if (pszContent != nullptr && nLength > 15 &&
5555 19 : STARTS_WITH(pszContent, "<?xpacket begin="))
5556 : {
5557 : char *apszMDList[2];
5558 19 : apszMDList[0] = pszContent;
5559 19 : apszMDList[1] = nullptr;
5560 19 : poDS->SetMetadata(apszMDList, "xml:XMP");
5561 : }
5562 19 : CPLFree(pszContent);
5563 : }
5564 : }
5565 : }
5566 231 : delete poRoot;
5567 :
5568 : /* Find layers */
5569 231 : poDS->FindLayersPdfium((bOpenSubdataset || bOpenSubdatasetImage) ? iPage
5570 : : 0);
5571 :
5572 : /* Turn user specified layers on or off */
5573 231 : poDS->TurnLayersOnOffPdfium();
5574 :
5575 : GDALPDFObjectPdfium *poInfo =
5576 231 : GDALPDFObjectPdfium::Build(poDocPdfium->doc->GetInfo());
5577 231 : if (poInfo)
5578 : {
5579 : /* Read Info object */
5580 37 : poDS->ParseInfo(poInfo);
5581 37 : delete poInfo;
5582 : }
5583 : }
5584 : #endif // ~ HAVE_PDFIUM
5585 :
5586 420 : int nBands = 3;
5587 : #ifdef HAVE_PDFIUM
5588 : // Use Alpha channel for PDFIUM as default format RGBA
5589 420 : if (bUseLib.test(PDFLIB_PDFIUM))
5590 231 : nBands = 4;
5591 : #endif
5592 420 : if (nBandsGuessed)
5593 16 : nBands = nBandsGuessed;
5594 : const char *pszPDFBands =
5595 420 : GetOption(poOpenInfo->papszOpenOptions, "BANDS", nullptr);
5596 420 : if (pszPDFBands)
5597 : {
5598 2 : nBands = atoi(pszPDFBands);
5599 2 : if (nBands != 3 && nBands != 4)
5600 : {
5601 0 : CPLError(CE_Warning, CPLE_NotSupported,
5602 : "Invalid value for GDAL_PDF_BANDS. Using 3 as a fallback");
5603 0 : nBands = 3;
5604 : }
5605 : }
5606 : #ifdef HAVE_PODOFO
5607 : if (bUseLib.test(PDFLIB_PODOFO) && nBands == 4 && poDS->m_aiTiles.empty())
5608 : {
5609 : CPLError(CE_Warning, CPLE_NotSupported,
5610 : "GDAL_PDF_BANDS=4 not supported when PDF driver is compiled "
5611 : "against Podofo. "
5612 : "Using 3 as a fallback");
5613 : nBands = 3;
5614 : }
5615 : #endif
5616 :
5617 : int iBand;
5618 1917 : for (iBand = 1; iBand <= nBands; iBand++)
5619 : {
5620 1497 : if (poDS->m_poImageObj != nullptr)
5621 0 : poDS->SetBand(iBand, new PDFImageRasterBand(poDS, iBand));
5622 : else
5623 1497 : poDS->SetBand(iBand, new PDFRasterBand(poDS, iBand, 0));
5624 : }
5625 :
5626 : /* Check if this is a raster-only PDF file and that we are */
5627 : /* opened in vector-only mode */
5628 963 : if ((poOpenInfo->nOpenFlags & GDAL_OF_RASTER) == 0 &&
5629 438 : (poOpenInfo->nOpenFlags & GDAL_OF_VECTOR) != 0 &&
5630 18 : !poDS->OpenVectorLayers(poPageDict))
5631 : {
5632 0 : CPLDebug("PDF", "This is a raster-only PDF dataset, "
5633 : "but it has been opened in vector-only mode");
5634 : /* Clear dirty flag */
5635 0 : poDS->m_bProjDirty = false;
5636 0 : poDS->m_bNeatLineDirty = false;
5637 0 : poDS->m_bInfoDirty = false;
5638 0 : poDS->m_bXMPDirty = false;
5639 0 : delete poDS;
5640 0 : return nullptr;
5641 : }
5642 :
5643 : /* -------------------------------------------------------------------- */
5644 : /* Initialize any PAM information. */
5645 : /* -------------------------------------------------------------------- */
5646 420 : if (bOpenSubdataset || bOpenSubdatasetImage)
5647 : {
5648 24 : poDS->SetPhysicalFilename(pszFilename);
5649 24 : poDS->SetSubdatasetName(osSubdatasetName.c_str());
5650 : }
5651 : else
5652 : {
5653 396 : poDS->SetDescription(poOpenInfo->pszFilename);
5654 : }
5655 :
5656 420 : poDS->TryLoadXML();
5657 :
5658 : /* -------------------------------------------------------------------- */
5659 : /* Support overviews. */
5660 : /* -------------------------------------------------------------------- */
5661 420 : if (!CSLFetchNameValue(poOpenInfo->papszOpenOptions, "@OPEN_FOR_OVERVIEW"))
5662 : {
5663 418 : poDS->oOvManager.Initialize(poDS, poOpenInfo->pszFilename);
5664 : }
5665 :
5666 : /* Clear dirty flag */
5667 420 : poDS->m_bProjDirty = false;
5668 420 : poDS->m_bNeatLineDirty = false;
5669 420 : poDS->m_bInfoDirty = false;
5670 420 : poDS->m_bXMPDirty = false;
5671 :
5672 420 : return (poDS);
5673 : }
5674 :
5675 : /************************************************************************/
5676 : /* ParseLGIDictObject() */
5677 : /************************************************************************/
5678 :
5679 32 : int PDFDataset::ParseLGIDictObject(GDALPDFObject *poLGIDict)
5680 : {
5681 32 : bool bOK = false;
5682 32 : if (poLGIDict->GetType() == PDFObjectType_Array)
5683 : {
5684 0 : GDALPDFArray *poArray = poLGIDict->GetArray();
5685 0 : int nArrayLength = poArray->GetLength();
5686 0 : int iMax = -1;
5687 0 : GDALPDFObject *poArrayElt = nullptr;
5688 0 : for (int i = 0; i < nArrayLength; i++)
5689 : {
5690 0 : if ((poArrayElt = poArray->Get(i)) == nullptr ||
5691 0 : poArrayElt->GetType() != PDFObjectType_Dictionary)
5692 : {
5693 0 : CPLError(CE_Failure, CPLE_AppDefined,
5694 : "LGIDict[%d] is not a dictionary", i);
5695 0 : return FALSE;
5696 : }
5697 :
5698 0 : int bIsBestCandidate = FALSE;
5699 0 : if (ParseLGIDictDictFirstPass(poArrayElt->GetDictionary(),
5700 0 : &bIsBestCandidate))
5701 : {
5702 0 : if (bIsBestCandidate || iMax < 0)
5703 0 : iMax = i;
5704 : }
5705 : }
5706 :
5707 0 : if (iMax < 0)
5708 0 : return FALSE;
5709 :
5710 0 : poArrayElt = poArray->Get(iMax);
5711 0 : bOK = CPL_TO_BOOL(
5712 0 : ParseLGIDictDictSecondPass(poArrayElt->GetDictionary()));
5713 : }
5714 32 : else if (poLGIDict->GetType() == PDFObjectType_Dictionary)
5715 : {
5716 64 : bOK = ParseLGIDictDictFirstPass(poLGIDict->GetDictionary()) &&
5717 32 : ParseLGIDictDictSecondPass(poLGIDict->GetDictionary());
5718 : }
5719 : else
5720 : {
5721 0 : CPLError(CE_Failure, CPLE_AppDefined, "LGIDict is of type %s",
5722 0 : poLGIDict->GetTypeName());
5723 : }
5724 :
5725 32 : return bOK;
5726 : }
5727 :
5728 : /************************************************************************/
5729 : /* Get() */
5730 : /************************************************************************/
5731 :
5732 22075 : static double Get(GDALPDFObject *poObj, int nIndice)
5733 : {
5734 22075 : if (poObj->GetType() == PDFObjectType_Array && nIndice >= 0)
5735 : {
5736 9848 : poObj = poObj->GetArray()->Get(nIndice);
5737 9848 : if (poObj == nullptr)
5738 0 : return 0;
5739 9848 : return Get(poObj);
5740 : }
5741 12227 : else if (poObj->GetType() == PDFObjectType_Int)
5742 9572 : return poObj->GetInt();
5743 2655 : else if (poObj->GetType() == PDFObjectType_Real)
5744 2295 : return poObj->GetReal();
5745 360 : else if (poObj->GetType() == PDFObjectType_String)
5746 : {
5747 360 : const char *pszStr = poObj->GetString().c_str();
5748 360 : size_t nLen = strlen(pszStr);
5749 360 : if (nLen == 0)
5750 0 : return 0;
5751 : /* cf Military_Installations_2008.pdf that has values like "96 0 0.0W"
5752 : */
5753 360 : char chLast = pszStr[nLen - 1];
5754 360 : if (chLast == 'W' || chLast == 'E' || chLast == 'N' || chLast == 'S')
5755 : {
5756 0 : double dfDeg = CPLAtof(pszStr);
5757 0 : double dfMin = 0.0;
5758 0 : double dfSec = 0.0;
5759 0 : const char *pszNext = strchr(pszStr, ' ');
5760 0 : if (pszNext)
5761 0 : pszNext++;
5762 0 : if (pszNext)
5763 0 : dfMin = CPLAtof(pszNext);
5764 0 : if (pszNext)
5765 0 : pszNext = strchr(pszNext, ' ');
5766 0 : if (pszNext)
5767 0 : pszNext++;
5768 0 : if (pszNext)
5769 0 : dfSec = CPLAtof(pszNext);
5770 0 : double dfVal = dfDeg + dfMin / 60 + dfSec / 3600;
5771 0 : if (chLast == 'W' || chLast == 'S')
5772 0 : return -dfVal;
5773 : else
5774 0 : return dfVal;
5775 : }
5776 360 : return CPLAtof(pszStr);
5777 : }
5778 : else
5779 : {
5780 0 : CPLError(CE_Warning, CPLE_AppDefined, "Unexpected type : %s",
5781 0 : poObj->GetTypeName());
5782 0 : return 0;
5783 : }
5784 : }
5785 :
5786 : /************************************************************************/
5787 : /* Get() */
5788 : /************************************************************************/
5789 :
5790 12 : static double Get(GDALPDFDictionary *poDict, const char *pszName)
5791 : {
5792 12 : GDALPDFObject *poObj = poDict->Get(pszName);
5793 12 : if (poObj != nullptr)
5794 12 : return Get(poObj);
5795 0 : CPLError(CE_Failure, CPLE_AppDefined, "Cannot find parameter %s", pszName);
5796 0 : return 0;
5797 : }
5798 :
5799 : /************************************************************************/
5800 : /* ParseLGIDictDictFirstPass() */
5801 : /************************************************************************/
5802 :
5803 32 : int PDFDataset::ParseLGIDictDictFirstPass(GDALPDFDictionary *poLGIDict,
5804 : int *pbIsBestCandidate)
5805 : {
5806 32 : if (pbIsBestCandidate)
5807 0 : *pbIsBestCandidate = FALSE;
5808 :
5809 32 : if (poLGIDict == nullptr)
5810 0 : return FALSE;
5811 :
5812 : /* -------------------------------------------------------------------- */
5813 : /* Extract Type attribute */
5814 : /* -------------------------------------------------------------------- */
5815 32 : GDALPDFObject *poType = poLGIDict->Get("Type");
5816 32 : if (poType == nullptr)
5817 : {
5818 0 : CPLError(CE_Failure, CPLE_AppDefined,
5819 : "Cannot find Type of LGIDict object");
5820 0 : return FALSE;
5821 : }
5822 :
5823 32 : if (poType->GetType() != PDFObjectType_Name)
5824 : {
5825 0 : CPLError(CE_Failure, CPLE_AppDefined,
5826 : "Invalid type for Type of LGIDict object");
5827 0 : return FALSE;
5828 : }
5829 :
5830 32 : if (strcmp(poType->GetName().c_str(), "LGIDict") != 0)
5831 : {
5832 0 : CPLError(CE_Failure, CPLE_AppDefined,
5833 : "Invalid value for Type of LGIDict object : %s",
5834 0 : poType->GetName().c_str());
5835 0 : return FALSE;
5836 : }
5837 :
5838 : /* -------------------------------------------------------------------- */
5839 : /* Extract Version attribute */
5840 : /* -------------------------------------------------------------------- */
5841 32 : GDALPDFObject *poVersion = poLGIDict->Get("Version");
5842 32 : if (poVersion == nullptr)
5843 : {
5844 0 : CPLError(CE_Failure, CPLE_AppDefined,
5845 : "Cannot find Version of LGIDict object");
5846 0 : return FALSE;
5847 : }
5848 :
5849 32 : if (poVersion->GetType() == PDFObjectType_String)
5850 : {
5851 : /* OGC best practice is 2.1 */
5852 32 : CPLDebug("PDF", "LGIDict Version : %s", poVersion->GetString().c_str());
5853 : }
5854 0 : else if (poVersion->GetType() == PDFObjectType_Int)
5855 : {
5856 : /* Old TerraGo is 2 */
5857 0 : CPLDebug("PDF", "LGIDict Version : %d", poVersion->GetInt());
5858 : }
5859 :
5860 : /* USGS PDF maps have several LGIDict. Keep the one whose description */
5861 : /* is "Map Layers" by default */
5862 : const char *pszNeatlineToSelect =
5863 32 : GetOption(papszOpenOptions, "NEATLINE", "Map Layers");
5864 :
5865 : /* -------------------------------------------------------------------- */
5866 : /* Extract Neatline attribute */
5867 : /* -------------------------------------------------------------------- */
5868 32 : GDALPDFObject *poNeatline = poLGIDict->Get("Neatline");
5869 32 : if (poNeatline != nullptr && poNeatline->GetType() == PDFObjectType_Array)
5870 : {
5871 32 : int nLength = poNeatline->GetArray()->GetLength();
5872 32 : if ((nLength % 2) != 0 || nLength < 4)
5873 : {
5874 0 : CPLError(CE_Failure, CPLE_AppDefined,
5875 : "Invalid length for Neatline");
5876 0 : return FALSE;
5877 : }
5878 :
5879 32 : GDALPDFObject *poDescription = poLGIDict->Get("Description");
5880 32 : bool bIsAskedNeatline = false;
5881 64 : if (poDescription != nullptr &&
5882 32 : poDescription->GetType() == PDFObjectType_String)
5883 : {
5884 32 : CPLDebug("PDF", "Description = %s",
5885 32 : poDescription->GetString().c_str());
5886 :
5887 32 : if (EQUAL(poDescription->GetString().c_str(), pszNeatlineToSelect))
5888 : {
5889 0 : m_dfMaxArea = 1e300;
5890 0 : bIsAskedNeatline = true;
5891 : }
5892 : }
5893 :
5894 32 : if (!bIsAskedNeatline)
5895 : {
5896 32 : double dfMinX = 0.0;
5897 32 : double dfMinY = 0.0;
5898 32 : double dfMaxX = 0.0;
5899 32 : double dfMaxY = 0.0;
5900 172 : for (int i = 0; i < nLength; i += 2)
5901 : {
5902 140 : double dfX = Get(poNeatline, i);
5903 140 : double dfY = Get(poNeatline, i + 1);
5904 140 : if (i == 0 || dfX < dfMinX)
5905 32 : dfMinX = dfX;
5906 140 : if (i == 0 || dfY < dfMinY)
5907 76 : dfMinY = dfY;
5908 140 : if (i == 0 || dfX > dfMaxX)
5909 64 : dfMaxX = dfX;
5910 140 : if (i == 0 || dfY > dfMaxY)
5911 32 : dfMaxY = dfY;
5912 : }
5913 32 : double dfArea = (dfMaxX - dfMinX) * (dfMaxY - dfMinY);
5914 32 : if (dfArea < m_dfMaxArea)
5915 : {
5916 0 : CPLDebug("PDF", "Not the largest neatline. Skipping it");
5917 0 : return TRUE;
5918 : }
5919 :
5920 32 : CPLDebug("PDF", "This is the largest neatline for now");
5921 32 : m_dfMaxArea = dfArea;
5922 : }
5923 : else
5924 0 : CPLDebug("PDF", "The \"%s\" registration will be selected",
5925 : pszNeatlineToSelect);
5926 :
5927 32 : if (pbIsBestCandidate)
5928 0 : *pbIsBestCandidate = TRUE;
5929 :
5930 32 : delete m_poNeatLine;
5931 32 : m_poNeatLine = new OGRPolygon();
5932 32 : OGRLinearRing *poRing = new OGRLinearRing();
5933 32 : if (nLength == 4)
5934 : {
5935 : /* 2 points only ? They are the bounding box */
5936 0 : double dfX1 = Get(poNeatline, 0);
5937 0 : double dfY1 = Get(poNeatline, 1);
5938 0 : double dfX2 = Get(poNeatline, 2);
5939 0 : double dfY2 = Get(poNeatline, 3);
5940 0 : poRing->addPoint(dfX1, dfY1);
5941 0 : poRing->addPoint(dfX2, dfY1);
5942 0 : poRing->addPoint(dfX2, dfY2);
5943 0 : poRing->addPoint(dfX1, dfY2);
5944 : }
5945 : else
5946 : {
5947 172 : for (int i = 0; i < nLength; i += 2)
5948 : {
5949 140 : double dfX = Get(poNeatline, i);
5950 140 : double dfY = Get(poNeatline, i + 1);
5951 140 : poRing->addPoint(dfX, dfY);
5952 : }
5953 : }
5954 32 : poRing->closeRings();
5955 32 : m_poNeatLine->addRingDirectly(poRing);
5956 : }
5957 :
5958 32 : return TRUE;
5959 : }
5960 :
5961 : /************************************************************************/
5962 : /* ParseLGIDictDictSecondPass() */
5963 : /************************************************************************/
5964 :
5965 32 : int PDFDataset::ParseLGIDictDictSecondPass(GDALPDFDictionary *poLGIDict)
5966 : {
5967 : int i;
5968 :
5969 : /* -------------------------------------------------------------------- */
5970 : /* Extract Description attribute */
5971 : /* -------------------------------------------------------------------- */
5972 32 : GDALPDFObject *poDescription = poLGIDict->Get("Description");
5973 64 : if (poDescription != nullptr &&
5974 32 : poDescription->GetType() == PDFObjectType_String)
5975 : {
5976 32 : CPLDebug("PDF", "Description = %s", poDescription->GetString().c_str());
5977 : }
5978 :
5979 : /* -------------------------------------------------------------------- */
5980 : /* Extract CTM attribute */
5981 : /* -------------------------------------------------------------------- */
5982 32 : GDALPDFObject *poCTM = poLGIDict->Get("CTM");
5983 32 : m_bHasCTM = false;
5984 58 : if (poCTM != nullptr && poCTM->GetType() == PDFObjectType_Array &&
5985 26 : CPLTestBool(CPLGetConfigOption("PDF_USE_CTM", "YES")))
5986 : {
5987 26 : int nLength = poCTM->GetArray()->GetLength();
5988 26 : if (nLength != 6)
5989 : {
5990 0 : CPLError(CE_Failure, CPLE_AppDefined, "Invalid length for CTM");
5991 0 : return FALSE;
5992 : }
5993 :
5994 26 : m_bHasCTM = true;
5995 182 : for (i = 0; i < nLength; i++)
5996 : {
5997 156 : m_adfCTM[i] = Get(poCTM, i);
5998 : /* Nullify rotation terms that are significantly smaller than */
5999 : /* scaling terms. */
6000 208 : if ((i == 1 || i == 2) &&
6001 52 : fabs(m_adfCTM[i]) < fabs(m_adfCTM[0]) * 1e-10)
6002 52 : m_adfCTM[i] = 0;
6003 156 : CPLDebug("PDF", "CTM[%d] = %.16g", i, m_adfCTM[i]);
6004 : }
6005 : }
6006 :
6007 : /* -------------------------------------------------------------------- */
6008 : /* Extract Registration attribute */
6009 : /* -------------------------------------------------------------------- */
6010 32 : GDALPDFObject *poRegistration = poLGIDict->Get("Registration");
6011 38 : if (poRegistration != nullptr &&
6012 6 : poRegistration->GetType() == PDFObjectType_Array)
6013 : {
6014 6 : GDALPDFArray *poRegistrationArray = poRegistration->GetArray();
6015 6 : int nLength = poRegistrationArray->GetLength();
6016 6 : if (nLength > 4 || (!m_bHasCTM && nLength >= 2) ||
6017 0 : CPLTestBool(CPLGetConfigOption("PDF_REPORT_GCPS", "NO")))
6018 : {
6019 6 : m_nGCPCount = 0;
6020 6 : m_pasGCPList =
6021 6 : static_cast<GDAL_GCP *>(CPLCalloc(sizeof(GDAL_GCP), nLength));
6022 :
6023 36 : for (i = 0; i < nLength; i++)
6024 : {
6025 30 : GDALPDFObject *poGCP = poRegistrationArray->Get(i);
6026 60 : if (poGCP != nullptr &&
6027 60 : poGCP->GetType() == PDFObjectType_Array &&
6028 30 : poGCP->GetArray()->GetLength() == 4)
6029 : {
6030 30 : double dfUserX = Get(poGCP, 0);
6031 30 : double dfUserY = Get(poGCP, 1);
6032 30 : double dfX = Get(poGCP, 2);
6033 30 : double dfY = Get(poGCP, 3);
6034 30 : CPLDebug("PDF", "GCP[%d].userX = %.16g", i, dfUserX);
6035 30 : CPLDebug("PDF", "GCP[%d].userY = %.16g", i, dfUserY);
6036 30 : CPLDebug("PDF", "GCP[%d].x = %.16g", i, dfX);
6037 30 : CPLDebug("PDF", "GCP[%d].y = %.16g", i, dfY);
6038 :
6039 : char szID[32];
6040 30 : snprintf(szID, sizeof(szID), "%d", m_nGCPCount + 1);
6041 30 : m_pasGCPList[m_nGCPCount].pszId = CPLStrdup(szID);
6042 30 : m_pasGCPList[m_nGCPCount].pszInfo = CPLStrdup("");
6043 30 : m_pasGCPList[m_nGCPCount].dfGCPPixel = dfUserX;
6044 30 : m_pasGCPList[m_nGCPCount].dfGCPLine = dfUserY;
6045 30 : m_pasGCPList[m_nGCPCount].dfGCPX = dfX;
6046 30 : m_pasGCPList[m_nGCPCount].dfGCPY = dfY;
6047 30 : m_nGCPCount++;
6048 : }
6049 : }
6050 :
6051 6 : if (m_nGCPCount == 0)
6052 : {
6053 0 : CPLFree(m_pasGCPList);
6054 0 : m_pasGCPList = nullptr;
6055 : }
6056 : }
6057 : }
6058 :
6059 32 : if (!m_bHasCTM && m_nGCPCount == 0)
6060 : {
6061 0 : CPLDebug("PDF", "Neither CTM nor Registration found");
6062 0 : return FALSE;
6063 : }
6064 :
6065 : /* -------------------------------------------------------------------- */
6066 : /* Extract Projection attribute */
6067 : /* -------------------------------------------------------------------- */
6068 32 : GDALPDFObject *poProjection = poLGIDict->Get("Projection");
6069 64 : if (poProjection == nullptr ||
6070 32 : poProjection->GetType() != PDFObjectType_Dictionary)
6071 : {
6072 0 : CPLError(CE_Failure, CPLE_AppDefined, "Could not find Projection");
6073 0 : return FALSE;
6074 : }
6075 :
6076 32 : return ParseProjDict(poProjection->GetDictionary());
6077 : }
6078 :
6079 : /************************************************************************/
6080 : /* ParseProjDict() */
6081 : /************************************************************************/
6082 :
6083 32 : int PDFDataset::ParseProjDict(GDALPDFDictionary *poProjDict)
6084 : {
6085 32 : if (poProjDict == nullptr)
6086 0 : return FALSE;
6087 64 : OGRSpatialReference oSRS;
6088 32 : oSRS.SetAxisMappingStrategy(OAMS_TRADITIONAL_GIS_ORDER);
6089 :
6090 : /* -------------------------------------------------------------------- */
6091 : /* Extract WKT attribute (GDAL extension) */
6092 : /* -------------------------------------------------------------------- */
6093 32 : GDALPDFObject *poWKT = poProjDict->Get("WKT");
6094 48 : if (poWKT != nullptr && poWKT->GetType() == PDFObjectType_String &&
6095 16 : CPLTestBool(CPLGetConfigOption("GDAL_PDF_OGC_BP_READ_WKT", "TRUE")))
6096 : {
6097 16 : CPLDebug("PDF", "Found WKT attribute (GDAL extension). Using it");
6098 16 : const char *pszWKTRead = poWKT->GetString().c_str();
6099 16 : if (pszWKTRead[0] != 0)
6100 16 : m_oSRS.importFromWkt(pszWKTRead);
6101 16 : return TRUE;
6102 : }
6103 :
6104 : /* -------------------------------------------------------------------- */
6105 : /* Extract Type attribute */
6106 : /* -------------------------------------------------------------------- */
6107 16 : GDALPDFObject *poType = poProjDict->Get("Type");
6108 16 : if (poType == nullptr)
6109 : {
6110 0 : CPLError(CE_Failure, CPLE_AppDefined,
6111 : "Cannot find Type of Projection object");
6112 0 : return FALSE;
6113 : }
6114 :
6115 16 : if (poType->GetType() != PDFObjectType_Name)
6116 : {
6117 0 : CPLError(CE_Failure, CPLE_AppDefined,
6118 : "Invalid type for Type of Projection object");
6119 0 : return FALSE;
6120 : }
6121 :
6122 16 : if (strcmp(poType->GetName().c_str(), "Projection") != 0)
6123 : {
6124 0 : CPLError(CE_Failure, CPLE_AppDefined,
6125 : "Invalid value for Type of Projection object : %s",
6126 0 : poType->GetName().c_str());
6127 0 : return FALSE;
6128 : }
6129 :
6130 : /* -------------------------------------------------------------------- */
6131 : /* Extract Datum attribute */
6132 : /* -------------------------------------------------------------------- */
6133 16 : int bIsWGS84 = FALSE;
6134 16 : int bIsNAD83 = FALSE;
6135 : /* int bIsNAD27 = FALSE; */
6136 :
6137 16 : GDALPDFObject *poDatum = poProjDict->Get("Datum");
6138 16 : if (poDatum != nullptr)
6139 : {
6140 16 : if (poDatum->GetType() == PDFObjectType_String)
6141 : {
6142 : /* Using Annex A of
6143 : * http://portal.opengeospatial.org/files/?artifact_id=40537 */
6144 16 : const char *pszDatum = poDatum->GetString().c_str();
6145 16 : CPLDebug("PDF", "Datum = %s", pszDatum);
6146 16 : if (EQUAL(pszDatum, "WE") || EQUAL(pszDatum, "WGE"))
6147 : {
6148 4 : bIsWGS84 = TRUE;
6149 4 : oSRS.SetWellKnownGeogCS("WGS84");
6150 : }
6151 12 : else if (EQUAL(pszDatum, "NAR") || STARTS_WITH_CI(pszDatum, "NAR-"))
6152 : {
6153 0 : bIsNAD83 = TRUE;
6154 0 : oSRS.SetWellKnownGeogCS("NAD83");
6155 : }
6156 12 : else if (EQUAL(pszDatum, "NAS") || STARTS_WITH_CI(pszDatum, "NAS-"))
6157 : {
6158 : /* bIsNAD27 = TRUE; */
6159 12 : oSRS.SetWellKnownGeogCS("NAD27");
6160 : }
6161 0 : else if (EQUAL(pszDatum, "HEN")) /* HERAT North, Afghanistan */
6162 : {
6163 0 : oSRS.SetGeogCS("unknown" /*const char * pszGeogName*/,
6164 : "unknown" /*const char * pszDatumName */,
6165 : "International 1924", 6378388, 297);
6166 0 : oSRS.SetTOWGS84(-333, -222, 114);
6167 : }
6168 0 : else if (EQUAL(pszDatum, "ING-A")) /* INDIAN 1960, Vietnam 16N */
6169 : {
6170 0 : oSRS.importFromEPSG(4131);
6171 : }
6172 0 : else if (EQUAL(pszDatum, "GDS")) /* Geocentric Datum of Australia */
6173 : {
6174 0 : oSRS.importFromEPSG(4283);
6175 : }
6176 0 : else if (STARTS_WITH_CI(pszDatum, "OHA-")) /* Old Hawaiian */
6177 : {
6178 0 : oSRS.importFromEPSG(4135); /* matches OHA-M (Mean) */
6179 0 : if (!EQUAL(pszDatum, "OHA-M"))
6180 : {
6181 0 : CPLError(CE_Warning, CPLE_AppDefined,
6182 : "Using OHA-M (Old Hawaiian Mean) definition for "
6183 : "%s. Potential issue with datum shift parameters",
6184 : pszDatum);
6185 0 : OGR_SRSNode *poNode = oSRS.GetRoot();
6186 0 : int iChild = poNode->FindChild("AUTHORITY");
6187 0 : if (iChild != -1)
6188 0 : poNode->DestroyChild(iChild);
6189 0 : iChild = poNode->FindChild("DATUM");
6190 0 : if (iChild != -1)
6191 : {
6192 0 : poNode = poNode->GetChild(iChild);
6193 0 : iChild = poNode->FindChild("AUTHORITY");
6194 0 : if (iChild != -1)
6195 0 : poNode->DestroyChild(iChild);
6196 : }
6197 : }
6198 : }
6199 : else
6200 : {
6201 0 : CPLError(CE_Warning, CPLE_AppDefined,
6202 : "Unhandled (yet) value for Datum : %s. Defaulting to "
6203 : "WGS84...",
6204 : pszDatum);
6205 0 : oSRS.SetGeogCS("unknown" /*const char * pszGeogName*/,
6206 : "unknown" /*const char * pszDatumName */,
6207 : "unknown", 6378137, 298.257223563);
6208 : }
6209 : }
6210 0 : else if (poDatum->GetType() == PDFObjectType_Dictionary)
6211 : {
6212 0 : GDALPDFDictionary *poDatumDict = poDatum->GetDictionary();
6213 :
6214 0 : GDALPDFObject *poDatumDescription = poDatumDict->Get("Description");
6215 0 : const char *pszDatumDescription = "unknown";
6216 0 : if (poDatumDescription != nullptr &&
6217 0 : poDatumDescription->GetType() == PDFObjectType_String)
6218 0 : pszDatumDescription = poDatumDescription->GetString().c_str();
6219 0 : CPLDebug("PDF", "Datum.Description = %s", pszDatumDescription);
6220 :
6221 0 : GDALPDFObject *poEllipsoid = poDatumDict->Get("Ellipsoid");
6222 0 : if (poEllipsoid == nullptr ||
6223 0 : !(poEllipsoid->GetType() == PDFObjectType_String ||
6224 0 : poEllipsoid->GetType() == PDFObjectType_Dictionary))
6225 : {
6226 0 : CPLError(
6227 : CE_Warning, CPLE_AppDefined,
6228 : "Cannot find Ellipsoid in Datum. Defaulting to WGS84...");
6229 0 : oSRS.SetGeogCS("unknown", pszDatumDescription, "unknown",
6230 : 6378137, 298.257223563);
6231 : }
6232 0 : else if (poEllipsoid->GetType() == PDFObjectType_String)
6233 : {
6234 0 : const char *pszEllipsoid = poEllipsoid->GetString().c_str();
6235 0 : CPLDebug("PDF", "Datum.Ellipsoid = %s", pszEllipsoid);
6236 0 : if (EQUAL(pszEllipsoid, "WE"))
6237 : {
6238 0 : oSRS.SetGeogCS("unknown", pszDatumDescription, "WGS 84",
6239 : 6378137, 298.257223563);
6240 : }
6241 : else
6242 : {
6243 0 : CPLError(CE_Warning, CPLE_AppDefined,
6244 : "Unhandled (yet) value for Ellipsoid : %s. "
6245 : "Defaulting to WGS84...",
6246 : pszEllipsoid);
6247 0 : oSRS.SetGeogCS("unknown", pszDatumDescription, pszEllipsoid,
6248 : 6378137, 298.257223563);
6249 : }
6250 : }
6251 : else // if (poEllipsoid->GetType() == PDFObjectType_Dictionary)
6252 : {
6253 : GDALPDFDictionary *poEllipsoidDict =
6254 0 : poEllipsoid->GetDictionary();
6255 :
6256 : GDALPDFObject *poEllipsoidDescription =
6257 0 : poEllipsoidDict->Get("Description");
6258 0 : const char *pszEllipsoidDescription = "unknown";
6259 0 : if (poEllipsoidDescription != nullptr &&
6260 0 : poEllipsoidDescription->GetType() == PDFObjectType_String)
6261 : pszEllipsoidDescription =
6262 0 : poEllipsoidDescription->GetString().c_str();
6263 0 : CPLDebug("PDF", "Datum.Ellipsoid.Description = %s",
6264 : pszEllipsoidDescription);
6265 :
6266 0 : double dfSemiMajor = Get(poEllipsoidDict, "SemiMajorAxis");
6267 0 : CPLDebug("PDF", "Datum.Ellipsoid.SemiMajorAxis = %.16g",
6268 : dfSemiMajor);
6269 0 : double dfInvFlattening = -1.0;
6270 :
6271 0 : if (poEllipsoidDict->Get("InvFlattening"))
6272 : {
6273 0 : dfInvFlattening = Get(poEllipsoidDict, "InvFlattening");
6274 0 : CPLDebug("PDF", "Datum.Ellipsoid.InvFlattening = %.16g",
6275 : dfInvFlattening);
6276 : }
6277 0 : else if (poEllipsoidDict->Get("SemiMinorAxis"))
6278 : {
6279 0 : double dfSemiMinor = Get(poEllipsoidDict, "SemiMinorAxis");
6280 0 : CPLDebug("PDF", "Datum.Ellipsoid.SemiMinorAxis = %.16g",
6281 : dfSemiMinor);
6282 : dfInvFlattening =
6283 0 : OSRCalcInvFlattening(dfSemiMajor, dfSemiMinor);
6284 : }
6285 :
6286 0 : if (dfSemiMajor != 0.0 && dfInvFlattening != -1.0)
6287 : {
6288 0 : oSRS.SetGeogCS("unknown", pszDatumDescription,
6289 : pszEllipsoidDescription, dfSemiMajor,
6290 : dfInvFlattening);
6291 : }
6292 : else
6293 : {
6294 0 : CPLError(
6295 : CE_Warning, CPLE_AppDefined,
6296 : "Invalid Ellipsoid object. Defaulting to WGS84...");
6297 0 : oSRS.SetGeogCS("unknown", pszDatumDescription,
6298 : pszEllipsoidDescription, 6378137,
6299 : 298.257223563);
6300 : }
6301 : }
6302 :
6303 0 : GDALPDFObject *poTOWGS84 = poDatumDict->Get("ToWGS84");
6304 0 : if (poTOWGS84 != nullptr &&
6305 0 : poTOWGS84->GetType() == PDFObjectType_Dictionary)
6306 : {
6307 0 : GDALPDFDictionary *poTOWGS84Dict = poTOWGS84->GetDictionary();
6308 0 : double dx = Get(poTOWGS84Dict, "dx");
6309 0 : double dy = Get(poTOWGS84Dict, "dy");
6310 0 : double dz = Get(poTOWGS84Dict, "dz");
6311 0 : if (poTOWGS84Dict->Get("rx") && poTOWGS84Dict->Get("ry") &&
6312 0 : poTOWGS84Dict->Get("rz") && poTOWGS84Dict->Get("sf"))
6313 : {
6314 0 : double rx = Get(poTOWGS84Dict, "rx");
6315 0 : double ry = Get(poTOWGS84Dict, "ry");
6316 0 : double rz = Get(poTOWGS84Dict, "rz");
6317 0 : double sf = Get(poTOWGS84Dict, "sf");
6318 0 : oSRS.SetTOWGS84(dx, dy, dz, rx, ry, rz, sf);
6319 : }
6320 : else
6321 : {
6322 0 : oSRS.SetTOWGS84(dx, dy, dz);
6323 : }
6324 : }
6325 : }
6326 : }
6327 :
6328 : /* -------------------------------------------------------------------- */
6329 : /* Extract Hemisphere attribute */
6330 : /* -------------------------------------------------------------------- */
6331 32 : CPLString osHemisphere;
6332 16 : GDALPDFObject *poHemisphere = poProjDict->Get("Hemisphere");
6333 28 : if (poHemisphere != nullptr &&
6334 12 : poHemisphere->GetType() == PDFObjectType_String)
6335 : {
6336 12 : osHemisphere = poHemisphere->GetString();
6337 : }
6338 :
6339 : /* -------------------------------------------------------------------- */
6340 : /* Extract ProjectionType attribute */
6341 : /* -------------------------------------------------------------------- */
6342 16 : GDALPDFObject *poProjectionType = poProjDict->Get("ProjectionType");
6343 32 : if (poProjectionType == nullptr ||
6344 16 : poProjectionType->GetType() != PDFObjectType_String)
6345 : {
6346 0 : CPLError(CE_Failure, CPLE_AppDefined,
6347 : "Cannot find ProjectionType of Projection object");
6348 0 : return FALSE;
6349 : }
6350 32 : CPLString osProjectionType(poProjectionType->GetString());
6351 16 : CPLDebug("PDF", "Projection.ProjectionType = %s", osProjectionType.c_str());
6352 :
6353 : /* Unhandled: NONE, GEODETIC */
6354 :
6355 16 : if (EQUAL(osProjectionType, "GEOGRAPHIC"))
6356 : {
6357 : /* Nothing to do */
6358 : }
6359 :
6360 : /* Unhandled: LOCAL CARTESIAN, MG (MGRS) */
6361 :
6362 12 : else if (EQUAL(osProjectionType, "UT")) /* UTM */
6363 : {
6364 12 : const double dfZone = Get(poProjDict, "Zone");
6365 12 : if (dfZone >= 1 && dfZone <= 60)
6366 : {
6367 12 : int nZone = static_cast<int>(dfZone);
6368 12 : int bNorth = EQUAL(osHemisphere, "N");
6369 12 : if (bIsWGS84)
6370 0 : oSRS.importFromEPSG(((bNorth) ? 32600 : 32700) + nZone);
6371 : else
6372 12 : oSRS.SetUTM(nZone, bNorth);
6373 : }
6374 : }
6375 :
6376 0 : else if (EQUAL(osProjectionType,
6377 : "UP")) /* Universal Polar Stereographic (UPS) */
6378 : {
6379 0 : int bNorth = EQUAL(osHemisphere, "N");
6380 0 : if (bIsWGS84)
6381 0 : oSRS.importFromEPSG((bNorth) ? 32661 : 32761);
6382 : else
6383 0 : oSRS.SetPS((bNorth) ? 90 : -90, 0, 0.994, 200000, 200000);
6384 : }
6385 :
6386 0 : else if (EQUAL(osProjectionType, "SPCS")) /* State Plane */
6387 : {
6388 0 : const double dfZone = Get(poProjDict, "Zone");
6389 0 : if (dfZone >= 0 && dfZone <= INT_MAX)
6390 : {
6391 0 : int nZone = static_cast<int>(dfZone);
6392 0 : oSRS.SetStatePlane(nZone, bIsNAD83);
6393 : }
6394 : }
6395 :
6396 0 : else if (EQUAL(osProjectionType, "AC")) /* Albers Equal Area Conic */
6397 : {
6398 0 : double dfStdP1 = Get(poProjDict, "StandardParallelOne");
6399 0 : double dfStdP2 = Get(poProjDict, "StandardParallelTwo");
6400 0 : double dfCenterLat = Get(poProjDict, "OriginLatitude");
6401 0 : double dfCenterLong = Get(poProjDict, "CentralMeridian");
6402 0 : double dfFalseEasting = Get(poProjDict, "FalseEasting");
6403 0 : double dfFalseNorthing = Get(poProjDict, "FalseNorthing");
6404 0 : oSRS.SetACEA(dfStdP1, dfStdP2, dfCenterLat, dfCenterLong,
6405 : dfFalseEasting, dfFalseNorthing);
6406 : }
6407 :
6408 0 : else if (EQUAL(osProjectionType, "AL")) /* Azimuthal Equidistant */
6409 : {
6410 0 : double dfCenterLat = Get(poProjDict, "OriginLatitude");
6411 0 : double dfCenterLong = Get(poProjDict, "CentralMeridian");
6412 0 : double dfFalseEasting = Get(poProjDict, "FalseEasting");
6413 0 : double dfFalseNorthing = Get(poProjDict, "FalseNorthing");
6414 0 : oSRS.SetAE(dfCenterLat, dfCenterLong, dfFalseEasting, dfFalseNorthing);
6415 : }
6416 :
6417 0 : else if (EQUAL(osProjectionType, "BF")) /* Bonne */
6418 : {
6419 0 : double dfStdP1 = Get(poProjDict, "OriginLatitude");
6420 0 : double dfCentralMeridian = Get(poProjDict, "CentralMeridian");
6421 0 : double dfFalseEasting = Get(poProjDict, "FalseEasting");
6422 0 : double dfFalseNorthing = Get(poProjDict, "FalseNorthing");
6423 0 : oSRS.SetBonne(dfStdP1, dfCentralMeridian, dfFalseEasting,
6424 : dfFalseNorthing);
6425 : }
6426 :
6427 0 : else if (EQUAL(osProjectionType, "CS")) /* Cassini */
6428 : {
6429 0 : double dfCenterLat = Get(poProjDict, "OriginLatitude");
6430 0 : double dfCenterLong = Get(poProjDict, "CentralMeridian");
6431 0 : double dfFalseEasting = Get(poProjDict, "FalseEasting");
6432 0 : double dfFalseNorthing = Get(poProjDict, "FalseNorthing");
6433 0 : oSRS.SetCS(dfCenterLat, dfCenterLong, dfFalseEasting, dfFalseNorthing);
6434 : }
6435 :
6436 0 : else if (EQUAL(osProjectionType, "LI")) /* Cylindrical Equal Area */
6437 : {
6438 0 : double dfStdP1 = Get(poProjDict, "OriginLatitude");
6439 0 : double dfCentralMeridian = Get(poProjDict, "CentralMeridian");
6440 0 : double dfFalseEasting = Get(poProjDict, "FalseEasting");
6441 0 : double dfFalseNorthing = Get(poProjDict, "FalseNorthing");
6442 0 : oSRS.SetCEA(dfStdP1, dfCentralMeridian, dfFalseEasting,
6443 : dfFalseNorthing);
6444 : }
6445 :
6446 0 : else if (EQUAL(osProjectionType, "EF")) /* Eckert IV */
6447 : {
6448 0 : double dfCentralMeridian = Get(poProjDict, "CentralMeridian");
6449 0 : double dfFalseEasting = Get(poProjDict, "FalseEasting");
6450 0 : double dfFalseNorthing = Get(poProjDict, "FalseNorthing");
6451 0 : oSRS.SetEckertIV(dfCentralMeridian, dfFalseEasting, dfFalseNorthing);
6452 : }
6453 :
6454 0 : else if (EQUAL(osProjectionType, "ED")) /* Eckert VI */
6455 : {
6456 0 : double dfCentralMeridian = Get(poProjDict, "CentralMeridian");
6457 0 : double dfFalseEasting = Get(poProjDict, "FalseEasting");
6458 0 : double dfFalseNorthing = Get(poProjDict, "FalseNorthing");
6459 0 : oSRS.SetEckertVI(dfCentralMeridian, dfFalseEasting, dfFalseNorthing);
6460 : }
6461 :
6462 0 : else if (EQUAL(osProjectionType, "CP")) /* Equidistant Cylindrical */
6463 : {
6464 0 : double dfCenterLat = Get(poProjDict, "StandardParallel");
6465 0 : double dfCenterLong = Get(poProjDict, "CentralMeridian");
6466 0 : double dfFalseEasting = Get(poProjDict, "FalseEasting");
6467 0 : double dfFalseNorthing = Get(poProjDict, "FalseNorthing");
6468 0 : oSRS.SetEquirectangular(dfCenterLat, dfCenterLong, dfFalseEasting,
6469 : dfFalseNorthing);
6470 : }
6471 :
6472 0 : else if (EQUAL(osProjectionType, "GN")) /* Gnomonic */
6473 : {
6474 0 : double dfCenterLat = Get(poProjDict, "OriginLatitude");
6475 0 : double dfCenterLong = Get(poProjDict, "CentralMeridian");
6476 0 : double dfFalseEasting = Get(poProjDict, "FalseEasting");
6477 0 : double dfFalseNorthing = Get(poProjDict, "FalseNorthing");
6478 0 : oSRS.SetGnomonic(dfCenterLat, dfCenterLong, dfFalseEasting,
6479 : dfFalseNorthing);
6480 : }
6481 :
6482 0 : else if (EQUAL(osProjectionType, "LE")) /* Lambert Conformal Conic */
6483 : {
6484 0 : double dfStdP1 = Get(poProjDict, "StandardParallelOne");
6485 0 : double dfStdP2 = Get(poProjDict, "StandardParallelTwo");
6486 0 : double dfCenterLat = Get(poProjDict, "OriginLatitude");
6487 0 : double dfCenterLong = Get(poProjDict, "CentralMeridian");
6488 0 : double dfFalseEasting = Get(poProjDict, "FalseEasting");
6489 0 : double dfFalseNorthing = Get(poProjDict, "FalseNorthing");
6490 0 : oSRS.SetLCC(dfStdP1, dfStdP2, dfCenterLat, dfCenterLong, dfFalseEasting,
6491 : dfFalseNorthing);
6492 : }
6493 :
6494 0 : else if (EQUAL(osProjectionType, "MC")) /* Mercator */
6495 : {
6496 : #ifdef not_supported
6497 : if (poProjDict->Get("StandardParallelOne") == nullptr)
6498 : #endif
6499 : {
6500 0 : double dfCenterLat = Get(poProjDict, "OriginLatitude");
6501 0 : double dfCenterLong = Get(poProjDict, "CentralMeridian");
6502 0 : double dfScale = Get(poProjDict, "ScaleFactor");
6503 0 : double dfFalseEasting = Get(poProjDict, "FalseEasting");
6504 0 : double dfFalseNorthing = Get(poProjDict, "FalseNorthing");
6505 0 : oSRS.SetMercator(dfCenterLat, dfCenterLong, dfScale, dfFalseEasting,
6506 : dfFalseNorthing);
6507 : }
6508 : #ifdef not_supported
6509 : else
6510 : {
6511 : double dfStdP1 = Get(poProjDict, "StandardParallelOne");
6512 : double dfCenterLat = poProjDict->Get("OriginLatitude")
6513 : ? Get(poProjDict, "OriginLatitude")
6514 : : 0;
6515 : double dfCenterLong = Get(poProjDict, "CentralMeridian");
6516 : double dfFalseEasting = Get(poProjDict, "FalseEasting");
6517 : double dfFalseNorthing = Get(poProjDict, "FalseNorthing");
6518 : oSRS.SetMercator2SP(dfStdP1, dfCenterLat, dfCenterLong,
6519 : dfFalseEasting, dfFalseNorthing);
6520 : }
6521 : #endif
6522 : }
6523 :
6524 0 : else if (EQUAL(osProjectionType, "MH")) /* Miller Cylindrical */
6525 : {
6526 0 : double dfCenterLat = 0 /* ? */;
6527 0 : double dfCenterLong = Get(poProjDict, "CentralMeridian");
6528 0 : double dfFalseEasting = Get(poProjDict, "FalseEasting");
6529 0 : double dfFalseNorthing = Get(poProjDict, "FalseNorthing");
6530 0 : oSRS.SetMC(dfCenterLat, dfCenterLong, dfFalseEasting, dfFalseNorthing);
6531 : }
6532 :
6533 0 : else if (EQUAL(osProjectionType, "MP")) /* Mollweide */
6534 : {
6535 0 : double dfCentralMeridian = Get(poProjDict, "CentralMeridian");
6536 0 : double dfFalseEasting = Get(poProjDict, "FalseEasting");
6537 0 : double dfFalseNorthing = Get(poProjDict, "FalseNorthing");
6538 0 : oSRS.SetMollweide(dfCentralMeridian, dfFalseEasting, dfFalseNorthing);
6539 : }
6540 :
6541 : /* Unhandled: "NY" : Ney's (Modified Lambert Conformal Conic) */
6542 :
6543 0 : else if (EQUAL(osProjectionType, "NT")) /* New Zealand Map Grid */
6544 : {
6545 : /* No parameter specified in the PDF, so let's take the ones of
6546 : * EPSG:27200 */
6547 0 : double dfCenterLat = -41;
6548 0 : double dfCenterLong = 173;
6549 0 : double dfFalseEasting = 2510000;
6550 0 : double dfFalseNorthing = 6023150;
6551 0 : oSRS.SetNZMG(dfCenterLat, dfCenterLong, dfFalseEasting,
6552 : dfFalseNorthing);
6553 : }
6554 :
6555 0 : else if (EQUAL(osProjectionType, "OC")) /* Oblique Mercator */
6556 : {
6557 0 : double dfCenterLat = Get(poProjDict, "OriginLatitude");
6558 0 : double dfLat1 = Get(poProjDict, "LatitudeOne");
6559 0 : double dfLong1 = Get(poProjDict, "LongitudeOne");
6560 0 : double dfLat2 = Get(poProjDict, "LatitudeTwo");
6561 0 : double dfLong2 = Get(poProjDict, "LongitudeTwo");
6562 0 : double dfScale = Get(poProjDict, "ScaleFactor");
6563 0 : double dfFalseEasting = Get(poProjDict, "FalseEasting");
6564 0 : double dfFalseNorthing = Get(poProjDict, "FalseNorthing");
6565 0 : oSRS.SetHOM2PNO(dfCenterLat, dfLat1, dfLong1, dfLat2, dfLong2, dfScale,
6566 : dfFalseEasting, dfFalseNorthing);
6567 : }
6568 :
6569 0 : else if (EQUAL(osProjectionType, "OD")) /* Orthographic */
6570 : {
6571 0 : double dfCenterLat = Get(poProjDict, "OriginLatitude");
6572 0 : double dfCenterLong = Get(poProjDict, "CentralMeridian");
6573 0 : double dfFalseEasting = Get(poProjDict, "FalseEasting");
6574 0 : double dfFalseNorthing = Get(poProjDict, "FalseNorthing");
6575 0 : oSRS.SetOrthographic(dfCenterLat, dfCenterLong, dfFalseEasting,
6576 : dfFalseNorthing);
6577 : }
6578 :
6579 0 : else if (EQUAL(osProjectionType, "PG")) /* Polar Stereographic */
6580 : {
6581 0 : double dfCenterLat = Get(poProjDict, "LatitudeTrueScale");
6582 0 : double dfCenterLong = Get(poProjDict, "LongitudeDownFromPole");
6583 0 : double dfScale = 1.0;
6584 0 : double dfFalseEasting = Get(poProjDict, "FalseEasting");
6585 0 : double dfFalseNorthing = Get(poProjDict, "FalseNorthing");
6586 0 : oSRS.SetPS(dfCenterLat, dfCenterLong, dfScale, dfFalseEasting,
6587 : dfFalseNorthing);
6588 : }
6589 :
6590 0 : else if (EQUAL(osProjectionType, "PH")) /* Polyconic */
6591 : {
6592 0 : double dfCenterLat = Get(poProjDict, "OriginLatitude");
6593 0 : double dfCenterLong = Get(poProjDict, "CentralMeridian");
6594 0 : double dfFalseEasting = Get(poProjDict, "FalseEasting");
6595 0 : double dfFalseNorthing = Get(poProjDict, "FalseNorthing");
6596 0 : oSRS.SetPolyconic(dfCenterLat, dfCenterLong, dfFalseEasting,
6597 : dfFalseNorthing);
6598 : }
6599 :
6600 0 : else if (EQUAL(osProjectionType, "SA")) /* Sinusoidal */
6601 : {
6602 0 : double dfCenterLong = Get(poProjDict, "CentralMeridian");
6603 0 : double dfFalseEasting = Get(poProjDict, "FalseEasting");
6604 0 : double dfFalseNorthing = Get(poProjDict, "FalseNorthing");
6605 0 : oSRS.SetSinusoidal(dfCenterLong, dfFalseEasting, dfFalseNorthing);
6606 : }
6607 :
6608 0 : else if (EQUAL(osProjectionType, "SD")) /* Stereographic */
6609 : {
6610 0 : double dfCenterLat = Get(poProjDict, "OriginLatitude");
6611 0 : double dfCenterLong = Get(poProjDict, "CentralMeridian");
6612 0 : double dfScale = 1.0;
6613 0 : double dfFalseEasting = Get(poProjDict, "FalseEasting");
6614 0 : double dfFalseNorthing = Get(poProjDict, "FalseNorthing");
6615 0 : oSRS.SetStereographic(dfCenterLat, dfCenterLong, dfScale,
6616 : dfFalseEasting, dfFalseNorthing);
6617 : }
6618 :
6619 0 : else if (EQUAL(osProjectionType, "TC")) /* Transverse Mercator */
6620 : {
6621 0 : double dfCenterLat = Get(poProjDict, "OriginLatitude");
6622 0 : double dfCenterLong = Get(poProjDict, "CentralMeridian");
6623 0 : double dfScale = Get(poProjDict, "ScaleFactor");
6624 0 : double dfFalseEasting = Get(poProjDict, "FalseEasting");
6625 0 : double dfFalseNorthing = Get(poProjDict, "FalseNorthing");
6626 0 : if (dfCenterLat == 0.0 && dfScale == 0.9996 && dfCenterLong >= -180 &&
6627 0 : dfCenterLong <= 180 && dfFalseEasting == 500000 &&
6628 0 : (dfFalseNorthing == 0.0 || dfFalseNorthing == 10000000.0))
6629 : {
6630 0 : const int nZone =
6631 0 : static_cast<int>(floor((dfCenterLong + 180.0) / 6.0) + 1);
6632 0 : int bNorth = dfFalseNorthing == 0;
6633 0 : if (bIsWGS84)
6634 0 : oSRS.importFromEPSG(((bNorth) ? 32600 : 32700) + nZone);
6635 0 : else if (bIsNAD83 && bNorth)
6636 0 : oSRS.importFromEPSG(26900 + nZone);
6637 : else
6638 0 : oSRS.SetUTM(nZone, bNorth);
6639 : }
6640 : else
6641 : {
6642 0 : oSRS.SetTM(dfCenterLat, dfCenterLong, dfScale, dfFalseEasting,
6643 : dfFalseNorthing);
6644 : }
6645 : }
6646 :
6647 : /* Unhandled TX : Transverse Cylindrical Equal Area */
6648 :
6649 0 : else if (EQUAL(osProjectionType, "VA")) /* Van der Grinten */
6650 : {
6651 0 : double dfCenterLong = Get(poProjDict, "CentralMeridian");
6652 0 : double dfFalseEasting = Get(poProjDict, "FalseEasting");
6653 0 : double dfFalseNorthing = Get(poProjDict, "FalseNorthing");
6654 0 : oSRS.SetVDG(dfCenterLong, dfFalseEasting, dfFalseNorthing);
6655 : }
6656 :
6657 : else
6658 : {
6659 0 : CPLError(CE_Failure, CPLE_AppDefined,
6660 : "Unhandled (yet) value for ProjectionType : %s",
6661 : osProjectionType.c_str());
6662 0 : return FALSE;
6663 : }
6664 :
6665 : /* -------------------------------------------------------------------- */
6666 : /* Extract Units attribute */
6667 : /* -------------------------------------------------------------------- */
6668 16 : CPLString osUnits;
6669 16 : GDALPDFObject *poUnits = poProjDict->Get("Units");
6670 28 : if (poUnits != nullptr && poUnits->GetType() == PDFObjectType_String &&
6671 12 : !EQUAL(osProjectionType, "GEOGRAPHIC"))
6672 : {
6673 12 : osUnits = poUnits->GetString();
6674 12 : CPLDebug("PDF", "Projection.Units = %s", osUnits.c_str());
6675 :
6676 : // This is super weird. The false easting/northing of the SRS
6677 : // are expressed in the unit, but the geotransform is expressed in
6678 : // meters. Hence this hack to have an equivalent SRS definition, but
6679 : // with linear units converted in meters.
6680 12 : if (EQUAL(osUnits, "M"))
6681 12 : oSRS.SetLinearUnits("Meter", 1.0);
6682 0 : else if (EQUAL(osUnits, "FT"))
6683 : {
6684 0 : oSRS.SetLinearUnits("foot", 0.3048);
6685 0 : oSRS.SetLinearUnitsAndUpdateParameters("Meter", 1.0);
6686 : }
6687 0 : else if (EQUAL(osUnits, "USSF"))
6688 : {
6689 0 : oSRS.SetLinearUnits(SRS_UL_US_FOOT, CPLAtof(SRS_UL_US_FOOT_CONV));
6690 0 : oSRS.SetLinearUnitsAndUpdateParameters("Meter", 1.0);
6691 : }
6692 : else
6693 0 : CPLError(CE_Warning, CPLE_AppDefined, "Unhandled unit: %s",
6694 : osUnits.c_str());
6695 : }
6696 :
6697 : /* -------------------------------------------------------------------- */
6698 : /* Export SpatialRef */
6699 : /* -------------------------------------------------------------------- */
6700 16 : m_oSRS = std::move(oSRS);
6701 :
6702 16 : return TRUE;
6703 : }
6704 :
6705 : /************************************************************************/
6706 : /* ParseVP() */
6707 : /************************************************************************/
6708 :
6709 285 : int PDFDataset::ParseVP(GDALPDFObject *poVP, double dfMediaBoxWidth,
6710 : double dfMediaBoxHeight)
6711 : {
6712 : int i;
6713 :
6714 285 : if (poVP->GetType() != PDFObjectType_Array)
6715 0 : return FALSE;
6716 :
6717 285 : GDALPDFArray *poVPArray = poVP->GetArray();
6718 :
6719 285 : int nLength = poVPArray->GetLength();
6720 285 : CPLDebug("PDF", "VP length = %d", nLength);
6721 285 : if (nLength < 1)
6722 0 : return FALSE;
6723 :
6724 : /* -------------------------------------------------------------------- */
6725 : /* Find the largest BBox */
6726 : /* -------------------------------------------------------------------- */
6727 : const char *pszNeatlineToSelect =
6728 285 : GetOption(papszOpenOptions, "NEATLINE", "Map Layers");
6729 :
6730 285 : int iLargest = 0;
6731 285 : int iRequestedVP = -1;
6732 285 : double dfLargestArea = 0;
6733 :
6734 585 : for (i = 0; i < nLength; i++)
6735 : {
6736 300 : GDALPDFObject *poVPElt = poVPArray->Get(i);
6737 600 : if (poVPElt == nullptr ||
6738 300 : poVPElt->GetType() != PDFObjectType_Dictionary)
6739 : {
6740 0 : return FALSE;
6741 : }
6742 :
6743 300 : GDALPDFDictionary *poVPEltDict = poVPElt->GetDictionary();
6744 :
6745 300 : GDALPDFObject *poMeasure = poVPEltDict->Get("Measure");
6746 600 : if (poMeasure == nullptr ||
6747 300 : poMeasure->GetType() != PDFObjectType_Dictionary)
6748 : {
6749 0 : continue;
6750 : }
6751 : /* --------------------------------------------------------------------
6752 : */
6753 : /* Extract Subtype attribute */
6754 : /* --------------------------------------------------------------------
6755 : */
6756 300 : GDALPDFDictionary *poMeasureDict = poMeasure->GetDictionary();
6757 300 : GDALPDFObject *poSubtype = poMeasureDict->Get("Subtype");
6758 300 : if (poSubtype == nullptr || poSubtype->GetType() != PDFObjectType_Name)
6759 : {
6760 0 : continue;
6761 : }
6762 :
6763 300 : CPLDebug("PDF", "Subtype = %s", poSubtype->GetName().c_str());
6764 300 : if (!EQUAL(poSubtype->GetName().c_str(), "GEO"))
6765 : {
6766 0 : continue;
6767 : }
6768 :
6769 300 : GDALPDFObject *poName = poVPEltDict->Get("Name");
6770 300 : if (poName != nullptr && poName->GetType() == PDFObjectType_String)
6771 : {
6772 297 : CPLDebug("PDF", "Name = %s", poName->GetString().c_str());
6773 297 : if (EQUAL(poName->GetString().c_str(), pszNeatlineToSelect))
6774 : {
6775 0 : iRequestedVP = i;
6776 : }
6777 : }
6778 :
6779 300 : GDALPDFObject *poBBox = poVPEltDict->Get("BBox");
6780 300 : if (poBBox == nullptr || poBBox->GetType() != PDFObjectType_Array)
6781 : {
6782 0 : CPLError(CE_Failure, CPLE_AppDefined, "Cannot find Bbox object");
6783 0 : return FALSE;
6784 : }
6785 :
6786 300 : int nBboxLength = poBBox->GetArray()->GetLength();
6787 300 : if (nBboxLength != 4)
6788 : {
6789 0 : CPLError(CE_Failure, CPLE_AppDefined,
6790 : "Invalid length for Bbox object");
6791 0 : return FALSE;
6792 : }
6793 :
6794 : double adfBBox[4];
6795 300 : adfBBox[0] = Get(poBBox, 0);
6796 300 : adfBBox[1] = Get(poBBox, 1);
6797 300 : adfBBox[2] = Get(poBBox, 2);
6798 300 : adfBBox[3] = Get(poBBox, 3);
6799 300 : double dfArea =
6800 300 : fabs(adfBBox[2] - adfBBox[0]) * fabs(adfBBox[3] - adfBBox[1]);
6801 300 : if (dfArea > dfLargestArea)
6802 : {
6803 285 : iLargest = i;
6804 285 : dfLargestArea = dfArea;
6805 : }
6806 : }
6807 :
6808 285 : if (nLength > 1)
6809 : {
6810 15 : CPLDebug("PDF", "Largest BBox in VP array is element %d", iLargest);
6811 : }
6812 :
6813 285 : GDALPDFObject *poVPElt = nullptr;
6814 :
6815 285 : if (iRequestedVP > -1)
6816 : {
6817 0 : CPLDebug("PDF", "Requested NEATLINE BBox in VP array is element %d",
6818 : iRequestedVP);
6819 0 : poVPElt = poVPArray->Get(iRequestedVP);
6820 : }
6821 : else
6822 : {
6823 285 : poVPElt = poVPArray->Get(iLargest);
6824 : }
6825 :
6826 285 : if (poVPElt == nullptr || poVPElt->GetType() != PDFObjectType_Dictionary)
6827 : {
6828 0 : return FALSE;
6829 : }
6830 :
6831 285 : GDALPDFDictionary *poVPEltDict = poVPElt->GetDictionary();
6832 :
6833 285 : GDALPDFObject *poBBox = poVPEltDict->Get("BBox");
6834 285 : if (poBBox == nullptr || poBBox->GetType() != PDFObjectType_Array)
6835 : {
6836 0 : CPLError(CE_Failure, CPLE_AppDefined, "Cannot find Bbox object");
6837 0 : return FALSE;
6838 : }
6839 :
6840 285 : int nBboxLength = poBBox->GetArray()->GetLength();
6841 285 : if (nBboxLength != 4)
6842 : {
6843 0 : CPLError(CE_Failure, CPLE_AppDefined, "Invalid length for Bbox object");
6844 0 : return FALSE;
6845 : }
6846 :
6847 285 : double dfULX = Get(poBBox, 0);
6848 285 : double dfULY = dfMediaBoxHeight - Get(poBBox, 1);
6849 285 : double dfLRX = Get(poBBox, 2);
6850 285 : double dfLRY = dfMediaBoxHeight - Get(poBBox, 3);
6851 :
6852 : /* -------------------------------------------------------------------- */
6853 : /* Extract Measure attribute */
6854 : /* -------------------------------------------------------------------- */
6855 285 : GDALPDFObject *poMeasure = poVPEltDict->Get("Measure");
6856 570 : if (poMeasure == nullptr ||
6857 285 : poMeasure->GetType() != PDFObjectType_Dictionary)
6858 : {
6859 0 : CPLError(CE_Failure, CPLE_AppDefined, "Cannot find Measure object");
6860 0 : return FALSE;
6861 : }
6862 :
6863 285 : int bRet = ParseMeasure(poMeasure, dfMediaBoxWidth, dfMediaBoxHeight, dfULX,
6864 : dfULY, dfLRX, dfLRY);
6865 :
6866 : /* -------------------------------------------------------------------- */
6867 : /* Extract PointData attribute */
6868 : /* -------------------------------------------------------------------- */
6869 285 : GDALPDFObject *poPointData = poVPEltDict->Get("PtData");
6870 285 : if (poPointData != nullptr &&
6871 0 : poPointData->GetType() == PDFObjectType_Dictionary)
6872 : {
6873 0 : CPLDebug("PDF", "Found PointData");
6874 : }
6875 :
6876 285 : return bRet;
6877 : }
6878 :
6879 : /************************************************************************/
6880 : /* ParseMeasure() */
6881 : /************************************************************************/
6882 :
6883 285 : int PDFDataset::ParseMeasure(GDALPDFObject *poMeasure, double dfMediaBoxWidth,
6884 : double dfMediaBoxHeight, double dfULX,
6885 : double dfULY, double dfLRX, double dfLRY)
6886 : {
6887 285 : GDALPDFDictionary *poMeasureDict = poMeasure->GetDictionary();
6888 :
6889 : /* -------------------------------------------------------------------- */
6890 : /* Extract Subtype attribute */
6891 : /* -------------------------------------------------------------------- */
6892 285 : GDALPDFObject *poSubtype = poMeasureDict->Get("Subtype");
6893 285 : if (poSubtype == nullptr || poSubtype->GetType() != PDFObjectType_Name)
6894 : {
6895 0 : CPLError(CE_Failure, CPLE_AppDefined, "Cannot find Subtype object");
6896 0 : return FALSE;
6897 : }
6898 :
6899 285 : CPLDebug("PDF", "Subtype = %s", poSubtype->GetName().c_str());
6900 285 : if (!EQUAL(poSubtype->GetName().c_str(), "GEO"))
6901 0 : return FALSE;
6902 :
6903 : /* -------------------------------------------------------------------- */
6904 : /* Extract Bounds attribute (optional) */
6905 : /* -------------------------------------------------------------------- */
6906 :
6907 : /* http://acrobatusers.com/sites/default/files/gallery_pictures/SEVERODVINSK.pdf
6908 : */
6909 : /* has lgit:LPTS, lgit:GPTS and lgit:Bounds that have more precision than */
6910 : /* LPTS, GPTS and Bounds. Use those ones */
6911 :
6912 285 : GDALPDFObject *poBounds = poMeasureDict->Get("lgit:Bounds");
6913 285 : if (poBounds != nullptr && poBounds->GetType() == PDFObjectType_Array)
6914 : {
6915 0 : CPLDebug("PDF", "Using lgit:Bounds");
6916 : }
6917 567 : else if ((poBounds = poMeasureDict->Get("Bounds")) == nullptr ||
6918 282 : poBounds->GetType() != PDFObjectType_Array)
6919 : {
6920 3 : poBounds = nullptr;
6921 : }
6922 :
6923 285 : if (poBounds != nullptr)
6924 : {
6925 282 : int nBoundsLength = poBounds->GetArray()->GetLength();
6926 282 : if (nBoundsLength == 8)
6927 : {
6928 : double adfBounds[8];
6929 2376 : for (int i = 0; i < 8; i++)
6930 : {
6931 2112 : adfBounds[i] = Get(poBounds, i);
6932 2112 : CPLDebug("PDF", "Bounds[%d] = %f", i, adfBounds[i]);
6933 : }
6934 :
6935 : // TODO we should use it to restrict the neatline but
6936 : // I have yet to set a sample where bounds are not the four
6937 : // corners of the unit square.
6938 : }
6939 : }
6940 :
6941 : /* -------------------------------------------------------------------- */
6942 : /* Extract GPTS attribute */
6943 : /* -------------------------------------------------------------------- */
6944 285 : GDALPDFObject *poGPTS = poMeasureDict->Get("lgit:GPTS");
6945 285 : if (poGPTS != nullptr && poGPTS->GetType() == PDFObjectType_Array)
6946 : {
6947 0 : CPLDebug("PDF", "Using lgit:GPTS");
6948 : }
6949 570 : else if ((poGPTS = poMeasureDict->Get("GPTS")) == nullptr ||
6950 285 : poGPTS->GetType() != PDFObjectType_Array)
6951 : {
6952 0 : CPLError(CE_Failure, CPLE_AppDefined, "Cannot find GPTS object");
6953 0 : return FALSE;
6954 : }
6955 :
6956 285 : int nGPTSLength = poGPTS->GetArray()->GetLength();
6957 285 : if ((nGPTSLength % 2) != 0 || nGPTSLength < 6)
6958 : {
6959 0 : CPLError(CE_Failure, CPLE_AppDefined, "Invalid length for GPTS object");
6960 0 : return FALSE;
6961 : }
6962 :
6963 570 : std::vector<double> adfGPTS(nGPTSLength);
6964 2565 : for (int i = 0; i < nGPTSLength; i++)
6965 : {
6966 2280 : adfGPTS[i] = Get(poGPTS, i);
6967 2280 : CPLDebug("PDF", "GPTS[%d] = %.18f", i, adfGPTS[i]);
6968 : }
6969 :
6970 : /* -------------------------------------------------------------------- */
6971 : /* Extract LPTS attribute */
6972 : /* -------------------------------------------------------------------- */
6973 285 : GDALPDFObject *poLPTS = poMeasureDict->Get("lgit:LPTS");
6974 285 : if (poLPTS != nullptr && poLPTS->GetType() == PDFObjectType_Array)
6975 : {
6976 0 : CPLDebug("PDF", "Using lgit:LPTS");
6977 : }
6978 570 : else if ((poLPTS = poMeasureDict->Get("LPTS")) == nullptr ||
6979 285 : poLPTS->GetType() != PDFObjectType_Array)
6980 : {
6981 0 : CPLError(CE_Failure, CPLE_AppDefined, "Cannot find LPTS object");
6982 0 : return FALSE;
6983 : }
6984 :
6985 285 : int nLPTSLength = poLPTS->GetArray()->GetLength();
6986 285 : if (nLPTSLength != nGPTSLength)
6987 : {
6988 0 : CPLError(CE_Failure, CPLE_AppDefined, "Invalid length for LPTS object");
6989 0 : return FALSE;
6990 : }
6991 :
6992 570 : std::vector<double> adfLPTS(nLPTSLength);
6993 2565 : for (int i = 0; i < nLPTSLength; i++)
6994 : {
6995 2280 : adfLPTS[i] = Get(poLPTS, i);
6996 2280 : CPLDebug("PDF", "LPTS[%d] = %f", i, adfLPTS[i]);
6997 : }
6998 :
6999 : /* -------------------------------------------------------------------- */
7000 : /* Extract GCS attribute */
7001 : /* -------------------------------------------------------------------- */
7002 285 : GDALPDFObject *poGCS = poMeasureDict->Get("GCS");
7003 285 : if (poGCS == nullptr || poGCS->GetType() != PDFObjectType_Dictionary)
7004 : {
7005 0 : CPLError(CE_Failure, CPLE_AppDefined, "Cannot find GCS object");
7006 0 : return FALSE;
7007 : }
7008 :
7009 285 : GDALPDFDictionary *poGCSDict = poGCS->GetDictionary();
7010 :
7011 : /* -------------------------------------------------------------------- */
7012 : /* Extract GCS.Type attribute */
7013 : /* -------------------------------------------------------------------- */
7014 285 : GDALPDFObject *poGCSType = poGCSDict->Get("Type");
7015 285 : if (poGCSType == nullptr || poGCSType->GetType() != PDFObjectType_Name)
7016 : {
7017 0 : CPLError(CE_Failure, CPLE_AppDefined, "Cannot find GCS.Type object");
7018 0 : return FALSE;
7019 : }
7020 :
7021 285 : CPLDebug("PDF", "GCS.Type = %s", poGCSType->GetName().c_str());
7022 :
7023 : /* -------------------------------------------------------------------- */
7024 : /* Extract EPSG attribute */
7025 : /* -------------------------------------------------------------------- */
7026 285 : GDALPDFObject *poEPSG = poGCSDict->Get("EPSG");
7027 285 : int nEPSGCode = 0;
7028 285 : if (poEPSG != nullptr && poEPSG->GetType() == PDFObjectType_Int)
7029 : {
7030 239 : nEPSGCode = poEPSG->GetInt();
7031 239 : CPLDebug("PDF", "GCS.EPSG = %d", nEPSGCode);
7032 : }
7033 :
7034 : /* -------------------------------------------------------------------- */
7035 : /* Extract GCS.WKT attribute */
7036 : /* -------------------------------------------------------------------- */
7037 285 : GDALPDFObject *poGCSWKT = poGCSDict->Get("WKT");
7038 285 : if (poGCSWKT != nullptr && poGCSWKT->GetType() != PDFObjectType_String)
7039 : {
7040 0 : poGCSWKT = nullptr;
7041 : }
7042 :
7043 285 : if (poGCSWKT != nullptr)
7044 282 : CPLDebug("PDF", "GCS.WKT = %s", poGCSWKT->GetString().c_str());
7045 :
7046 285 : if (nEPSGCode <= 0 && poGCSWKT == nullptr)
7047 : {
7048 0 : CPLError(CE_Failure, CPLE_AppDefined,
7049 : "Cannot find GCS.WKT or GCS.EPSG objects");
7050 0 : return FALSE;
7051 : }
7052 :
7053 285 : if (poGCSWKT != nullptr)
7054 : {
7055 282 : m_oSRS.importFromWkt(poGCSWKT->GetString().c_str());
7056 : }
7057 :
7058 285 : bool bSRSOK = false;
7059 285 : if (nEPSGCode != 0)
7060 : {
7061 : // At time of writing EPSG CRS codes are <= 32767.
7062 : // The usual practice is that codes >= 100000 are in the ESRI namespace
7063 : // instead
7064 239 : if (nEPSGCode >= 100000)
7065 : {
7066 4 : CPLErrorHandlerPusher oHandler(CPLQuietErrorHandler);
7067 4 : OGRSpatialReference oSRS_ESRI;
7068 2 : oSRS_ESRI.SetAxisMappingStrategy(OAMS_TRADITIONAL_GIS_ORDER);
7069 2 : if (oSRS_ESRI.SetFromUserInput(CPLSPrintf("ESRI:%d", nEPSGCode)) ==
7070 : OGRERR_NONE)
7071 : {
7072 2 : bSRSOK = true;
7073 :
7074 : // Check consistency of ESRI:xxxx and WKT definitions
7075 2 : if (poGCSWKT != nullptr)
7076 : {
7077 3 : if (!m_oSRS.GetName() ||
7078 1 : (!EQUAL(oSRS_ESRI.GetName(), m_oSRS.GetName()) &&
7079 0 : !oSRS_ESRI.IsSame(&m_oSRS)))
7080 : {
7081 1 : CPLDebug("PDF",
7082 : "Definition from ESRI:%d and WKT=%s do not "
7083 : "match. Using WKT string",
7084 1 : nEPSGCode, poGCSWKT->GetString().c_str());
7085 1 : bSRSOK = false;
7086 : }
7087 : }
7088 2 : if (bSRSOK)
7089 : {
7090 1 : m_oSRS = std::move(oSRS_ESRI);
7091 : }
7092 : }
7093 : }
7094 237 : else if (m_oSRS.importFromEPSG(nEPSGCode) == OGRERR_NONE)
7095 : {
7096 237 : bSRSOK = true;
7097 : }
7098 : }
7099 :
7100 285 : if (!bSRSOK)
7101 : {
7102 47 : if (poGCSWKT == nullptr)
7103 : {
7104 0 : CPLError(CE_Failure, CPLE_AppDefined,
7105 : "Cannot resolve EPSG object, and GCS.WKT not found");
7106 0 : return FALSE;
7107 : }
7108 :
7109 47 : if (m_oSRS.importFromWkt(poGCSWKT->GetString().c_str()) != OGRERR_NONE)
7110 : {
7111 1 : m_oSRS.Clear();
7112 1 : return FALSE;
7113 : }
7114 : }
7115 :
7116 : /* -------------------------------------------------------------------- */
7117 : /* Compute geotransform */
7118 : /* -------------------------------------------------------------------- */
7119 284 : OGRSpatialReference *poSRSGeog = m_oSRS.CloneGeogCS();
7120 :
7121 : /* Files found at
7122 : * http://carto.iict.ch/blog/publications-cartographiques-au-format-geospatial-pdf/
7123 : */
7124 : /* are in a PROJCS. However the coordinates in GPTS array are not in (lat,
7125 : * long) as required by the */
7126 : /* ISO 32000 supplement spec, but in (northing, easting). Adobe reader is
7127 : * able to understand that, */
7128 : /* so let's also try to do it with a heuristics. */
7129 :
7130 284 : bool bReproject = true;
7131 284 : if (m_oSRS.IsProjected())
7132 : {
7133 1065 : for (int i = 0; i < nGPTSLength / 2; i++)
7134 : {
7135 852 : if (fabs(adfGPTS[2 * i]) > 91 || fabs(adfGPTS[2 * i + 1]) > 361)
7136 : {
7137 0 : CPLDebug("PDF", "GPTS coordinates seems to be in (northing, "
7138 : "easting), which is non-standard");
7139 0 : bReproject = false;
7140 0 : break;
7141 : }
7142 : }
7143 : }
7144 :
7145 284 : OGRCoordinateTransformation *poCT = nullptr;
7146 284 : if (bReproject)
7147 : {
7148 284 : poCT = OGRCreateCoordinateTransformation(poSRSGeog, &m_oSRS);
7149 284 : if (poCT == nullptr)
7150 : {
7151 0 : delete poSRSGeog;
7152 0 : m_oSRS.Clear();
7153 0 : return FALSE;
7154 : }
7155 : }
7156 :
7157 568 : std::vector<GDAL_GCP> asGCPS(nGPTSLength / 2);
7158 :
7159 : /* Create NEATLINE */
7160 284 : OGRLinearRing *poRing = nullptr;
7161 284 : if (nGPTSLength == 8)
7162 : {
7163 284 : m_poNeatLine = new OGRPolygon();
7164 284 : poRing = new OGRLinearRing();
7165 284 : m_poNeatLine->addRingDirectly(poRing);
7166 : }
7167 :
7168 1420 : for (int i = 0; i < nGPTSLength / 2; i++)
7169 : {
7170 : /* We probably assume LPTS is 0 or 1 */
7171 2272 : asGCPS[i].dfGCPPixel =
7172 1136 : (dfULX * (1 - adfLPTS[2 * i + 0]) + dfLRX * adfLPTS[2 * i + 0]) /
7173 1136 : dfMediaBoxWidth * nRasterXSize;
7174 2272 : asGCPS[i].dfGCPLine =
7175 1136 : (dfULY * (1 - adfLPTS[2 * i + 1]) + dfLRY * adfLPTS[2 * i + 1]) /
7176 1136 : dfMediaBoxHeight * nRasterYSize;
7177 :
7178 1136 : double lat = adfGPTS[2 * i];
7179 1136 : double lon = adfGPTS[2 * i + 1];
7180 1136 : double x = lon;
7181 1136 : double y = lat;
7182 1136 : if (bReproject)
7183 : {
7184 1136 : if (!poCT->Transform(1, &x, &y, nullptr))
7185 : {
7186 0 : CPLError(CE_Failure, CPLE_AppDefined,
7187 : "Cannot reproject (%f, %f)", lon, lat);
7188 0 : delete poSRSGeog;
7189 0 : delete poCT;
7190 0 : m_oSRS.Clear();
7191 0 : return FALSE;
7192 : }
7193 : }
7194 :
7195 1136 : x = ROUND_IF_CLOSE(x);
7196 1136 : y = ROUND_IF_CLOSE(y);
7197 :
7198 1136 : asGCPS[i].dfGCPX = x;
7199 1136 : asGCPS[i].dfGCPY = y;
7200 :
7201 1136 : if (poRing)
7202 1136 : poRing->addPoint(x, y);
7203 : }
7204 :
7205 284 : delete poSRSGeog;
7206 284 : delete poCT;
7207 :
7208 284 : if (!GDALGCPsToGeoTransform(nGPTSLength / 2, asGCPS.data(),
7209 : m_adfGeoTransform.data(), FALSE))
7210 : {
7211 2 : CPLDebug("PDF",
7212 : "Could not compute GT with exact match. Try with approximate");
7213 2 : if (!GDALGCPsToGeoTransform(nGPTSLength / 2, asGCPS.data(),
7214 : m_adfGeoTransform.data(), TRUE))
7215 : {
7216 0 : CPLError(CE_Failure, CPLE_AppDefined,
7217 : "Could not compute GT with approximate match.");
7218 0 : return FALSE;
7219 : }
7220 : }
7221 284 : m_bGeoTransformValid = true;
7222 :
7223 : // If the non scaling terms of the geotransform are significantly smaller
7224 : // than the pixel size, then nullify them as being just artifacts of
7225 : // reprojection and GDALGCPsToGeoTransform() numerical imprecisions.
7226 : const double dfPixelSize =
7227 284 : std::min(fabs(m_adfGeoTransform[1]), fabs(m_adfGeoTransform[5]));
7228 : const double dfRotationShearTerm =
7229 284 : std::max(fabs(m_adfGeoTransform[2]), fabs(m_adfGeoTransform[4]));
7230 372 : if (dfRotationShearTerm < 1e-5 * dfPixelSize ||
7231 88 : (m_bUseLib.test(PDFLIB_PDFIUM) &&
7232 367 : std::min(fabs(m_adfGeoTransform[2]), fabs(m_adfGeoTransform[4])) <
7233 83 : 1e-5 * dfPixelSize))
7234 : {
7235 265 : dfLRX = m_adfGeoTransform[0] + nRasterXSize * m_adfGeoTransform[1] +
7236 265 : nRasterYSize * m_adfGeoTransform[2];
7237 265 : dfLRY = m_adfGeoTransform[3] + nRasterXSize * m_adfGeoTransform[4] +
7238 265 : nRasterYSize * m_adfGeoTransform[5];
7239 265 : m_adfGeoTransform[1] = (dfLRX - m_adfGeoTransform[0]) / nRasterXSize;
7240 265 : m_adfGeoTransform[5] = (dfLRY - m_adfGeoTransform[3]) / nRasterYSize;
7241 265 : m_adfGeoTransform[2] = m_adfGeoTransform[4] = 0;
7242 : }
7243 :
7244 284 : return TRUE;
7245 : }
7246 :
7247 : /************************************************************************/
7248 : /* GetSpatialRef() */
7249 : /************************************************************************/
7250 :
7251 268 : const OGRSpatialReference *PDFDataset::GetSpatialRef() const
7252 : {
7253 268 : const auto poSRS = GDALPamDataset::GetSpatialRef();
7254 268 : if (poSRS)
7255 10 : return poSRS;
7256 :
7257 258 : if (!m_oSRS.IsEmpty() && m_bGeoTransformValid)
7258 254 : return &m_oSRS;
7259 4 : return nullptr;
7260 : }
7261 :
7262 : /************************************************************************/
7263 : /* GetGeoTransform() */
7264 : /************************************************************************/
7265 :
7266 62 : CPLErr PDFDataset::GetGeoTransform(double *padfTransform)
7267 :
7268 : {
7269 62 : if (GDALPamDataset::GetGeoTransform(padfTransform) == CE_None)
7270 : {
7271 10 : return CE_None;
7272 : }
7273 :
7274 52 : std::copy(std::begin(m_adfGeoTransform), std::end(m_adfGeoTransform),
7275 : padfTransform);
7276 :
7277 52 : return ((m_bGeoTransformValid) ? CE_None : CE_Failure);
7278 : }
7279 :
7280 : /************************************************************************/
7281 : /* SetSpatialRef() */
7282 : /************************************************************************/
7283 :
7284 12 : CPLErr PDFDataset::SetSpatialRef(const OGRSpatialReference *poSRS)
7285 : {
7286 12 : if (eAccess == GA_ReadOnly)
7287 6 : GDALPamDataset::SetSpatialRef(poSRS);
7288 :
7289 12 : m_oSRS.Clear();
7290 12 : if (poSRS)
7291 10 : m_oSRS = *poSRS;
7292 12 : m_bProjDirty = true;
7293 12 : return CE_None;
7294 : }
7295 :
7296 : /************************************************************************/
7297 : /* SetGeoTransform() */
7298 : /************************************************************************/
7299 :
7300 10 : CPLErr PDFDataset::SetGeoTransform(double *padfGeoTransform)
7301 : {
7302 10 : if (eAccess == GA_ReadOnly)
7303 6 : GDALPamDataset::SetGeoTransform(padfGeoTransform);
7304 :
7305 10 : std::copy(padfGeoTransform, padfGeoTransform + 6,
7306 10 : std::begin(m_adfGeoTransform));
7307 10 : m_bGeoTransformValid = true;
7308 10 : m_bProjDirty = true;
7309 :
7310 : /* Reset NEATLINE if not explicitly set by the user */
7311 10 : if (!m_bNeatLineDirty)
7312 10 : SetMetadataItem("NEATLINE", nullptr);
7313 10 : return CE_None;
7314 : }
7315 :
7316 : /************************************************************************/
7317 : /* GetMetadataDomainList() */
7318 : /************************************************************************/
7319 :
7320 1 : char **PDFDataset::GetMetadataDomainList()
7321 : {
7322 1 : return BuildMetadataDomainList(GDALPamDataset::GetMetadataDomainList(),
7323 : TRUE, "xml:XMP", "LAYERS",
7324 1 : "EMBEDDED_METADATA", nullptr);
7325 : }
7326 :
7327 : /************************************************************************/
7328 : /* GetMetadata() */
7329 : /************************************************************************/
7330 :
7331 2125 : char **PDFDataset::GetMetadata(const char *pszDomain)
7332 : {
7333 2125 : if (pszDomain != nullptr && EQUAL(pszDomain, "EMBEDDED_METADATA"))
7334 : {
7335 1 : char **papszRet = m_oMDMD_PDF.GetMetadata(pszDomain);
7336 1 : if (papszRet)
7337 0 : return papszRet;
7338 :
7339 1 : GDALPDFObject *poCatalog = GetCatalog();
7340 1 : if (poCatalog == nullptr)
7341 0 : return nullptr;
7342 : GDALPDFObject *poFirstElt =
7343 1 : poCatalog->LookupObject("Names.EmbeddedFiles.Names[0]");
7344 : GDALPDFObject *poF =
7345 1 : poCatalog->LookupObject("Names.EmbeddedFiles.Names[1].EF.F");
7346 :
7347 1 : if (poFirstElt == nullptr ||
7348 1 : poFirstElt->GetType() != PDFObjectType_String ||
7349 0 : poFirstElt->GetString() != "Metadata")
7350 1 : return nullptr;
7351 0 : if (poF == nullptr || poF->GetType() != PDFObjectType_Dictionary)
7352 0 : return nullptr;
7353 0 : GDALPDFStream *poStream = poF->GetStream();
7354 0 : if (poStream == nullptr)
7355 0 : return nullptr;
7356 :
7357 0 : char *apszMetadata[2] = {nullptr, nullptr};
7358 0 : apszMetadata[0] = poStream->GetBytes();
7359 0 : m_oMDMD_PDF.SetMetadata(apszMetadata, pszDomain);
7360 0 : VSIFree(apszMetadata[0]);
7361 0 : return m_oMDMD_PDF.GetMetadata(pszDomain);
7362 : }
7363 2124 : if (pszDomain == nullptr || EQUAL(pszDomain, ""))
7364 : {
7365 241 : char **papszPAMMD = GDALPamDataset::GetMetadata(pszDomain);
7366 245 : for (char **papszIter = papszPAMMD; papszIter && *papszIter;
7367 : ++papszIter)
7368 : {
7369 4 : char *pszKey = nullptr;
7370 4 : const char *pszValue = CPLParseNameValue(*papszIter, &pszKey);
7371 4 : if (pszKey && pszValue)
7372 : {
7373 4 : if (m_oMDMD_PDF.GetMetadataItem(pszKey, pszDomain) == nullptr)
7374 4 : m_oMDMD_PDF.SetMetadataItem(pszKey, pszValue, pszDomain);
7375 : }
7376 4 : CPLFree(pszKey);
7377 : }
7378 241 : return m_oMDMD_PDF.GetMetadata(pszDomain);
7379 : }
7380 1883 : if (EQUAL(pszDomain, "LAYERS") || EQUAL(pszDomain, "xml:XMP") ||
7381 1835 : EQUAL(pszDomain, "SUBDATASETS"))
7382 : {
7383 50 : return m_oMDMD_PDF.GetMetadata(pszDomain);
7384 : }
7385 1833 : return GDALPamDataset::GetMetadata(pszDomain);
7386 : }
7387 :
7388 : /************************************************************************/
7389 : /* SetMetadata() */
7390 : /************************************************************************/
7391 :
7392 141 : CPLErr PDFDataset::SetMetadata(char **papszMetadata, const char *pszDomain)
7393 : {
7394 141 : if (pszDomain == nullptr || EQUAL(pszDomain, ""))
7395 : {
7396 95 : char **papszMetadataDup = CSLDuplicate(papszMetadata);
7397 95 : m_oMDMD_PDF.SetMetadata(nullptr, pszDomain);
7398 :
7399 294 : for (char **papszIter = papszMetadataDup; papszIter && *papszIter;
7400 : ++papszIter)
7401 : {
7402 199 : char *pszKey = nullptr;
7403 199 : const char *pszValue = CPLParseNameValue(*papszIter, &pszKey);
7404 199 : if (pszKey && pszValue)
7405 : {
7406 196 : SetMetadataItem(pszKey, pszValue, pszDomain);
7407 : }
7408 199 : CPLFree(pszKey);
7409 : }
7410 95 : CSLDestroy(papszMetadataDup);
7411 95 : return CE_None;
7412 : }
7413 46 : else if (EQUAL(pszDomain, "xml:XMP"))
7414 : {
7415 42 : m_bXMPDirty = true;
7416 42 : return m_oMDMD_PDF.SetMetadata(papszMetadata, pszDomain);
7417 : }
7418 4 : else if (EQUAL(pszDomain, "SUBDATASETS"))
7419 : {
7420 4 : return m_oMDMD_PDF.SetMetadata(papszMetadata, pszDomain);
7421 : }
7422 : else
7423 : {
7424 0 : return GDALPamDataset::SetMetadata(papszMetadata, pszDomain);
7425 : }
7426 : }
7427 :
7428 : /************************************************************************/
7429 : /* GetMetadataItem() */
7430 : /************************************************************************/
7431 :
7432 1946 : const char *PDFDataset::GetMetadataItem(const char *pszName,
7433 : const char *pszDomain)
7434 : {
7435 1946 : if (pszDomain != nullptr && EQUAL(pszDomain, "_INTERNAL_") &&
7436 0 : pszName != nullptr && EQUAL(pszName, "PDF_LIB"))
7437 : {
7438 0 : if (m_bUseLib.test(PDFLIB_POPPLER))
7439 0 : return "POPPLER";
7440 0 : if (m_bUseLib.test(PDFLIB_PODOFO))
7441 0 : return "PODOFO";
7442 0 : if (m_bUseLib.test(PDFLIB_PDFIUM))
7443 0 : return "PDFIUM";
7444 : }
7445 1946 : return CSLFetchNameValue(GetMetadata(pszDomain), pszName);
7446 : }
7447 :
7448 : /************************************************************************/
7449 : /* SetMetadataItem() */
7450 : /************************************************************************/
7451 :
7452 1443 : CPLErr PDFDataset::SetMetadataItem(const char *pszName, const char *pszValue,
7453 : const char *pszDomain)
7454 : {
7455 1443 : if (pszDomain == nullptr || EQUAL(pszDomain, ""))
7456 : {
7457 1341 : if (EQUAL(pszName, "NEATLINE"))
7458 : {
7459 : const char *pszOldValue =
7460 403 : m_oMDMD_PDF.GetMetadataItem(pszName, pszDomain);
7461 403 : if ((pszValue == nullptr && pszOldValue != nullptr) ||
7462 401 : (pszValue != nullptr && pszOldValue == nullptr) ||
7463 4 : (pszValue != nullptr && pszOldValue != nullptr &&
7464 4 : strcmp(pszValue, pszOldValue) != 0))
7465 : {
7466 391 : m_bProjDirty = true;
7467 391 : m_bNeatLineDirty = true;
7468 : }
7469 403 : return m_oMDMD_PDF.SetMetadataItem(pszName, pszValue, pszDomain);
7470 : }
7471 : else
7472 : {
7473 938 : if (EQUAL(pszName, "AUTHOR") || EQUAL(pszName, "PRODUCER") ||
7474 895 : EQUAL(pszName, "CREATOR") || EQUAL(pszName, "CREATION_DATE") ||
7475 805 : EQUAL(pszName, "SUBJECT") || EQUAL(pszName, "TITLE") ||
7476 770 : EQUAL(pszName, "KEYWORDS"))
7477 : {
7478 180 : if (pszValue == nullptr)
7479 2 : pszValue = "";
7480 : const char *pszOldValue =
7481 180 : m_oMDMD_PDF.GetMetadataItem(pszName, pszDomain);
7482 180 : if (pszOldValue == nullptr ||
7483 4 : strcmp(pszValue, pszOldValue) != 0)
7484 : {
7485 180 : m_bInfoDirty = true;
7486 : }
7487 180 : return m_oMDMD_PDF.SetMetadataItem(pszName, pszValue,
7488 180 : pszDomain);
7489 : }
7490 758 : else if (EQUAL(pszName, "DPI"))
7491 : {
7492 756 : return m_oMDMD_PDF.SetMetadataItem(pszName, pszValue,
7493 756 : pszDomain);
7494 : }
7495 : else
7496 : {
7497 2 : m_oMDMD_PDF.SetMetadataItem(pszName, pszValue, pszDomain);
7498 2 : return GDALPamDataset::SetMetadataItem(pszName, pszValue,
7499 2 : pszDomain);
7500 : }
7501 : }
7502 : }
7503 102 : else if (EQUAL(pszDomain, "xml:XMP"))
7504 : {
7505 0 : m_bXMPDirty = true;
7506 0 : return m_oMDMD_PDF.SetMetadataItem(pszName, pszValue, pszDomain);
7507 : }
7508 102 : else if (EQUAL(pszDomain, "SUBDATASETS"))
7509 : {
7510 0 : return m_oMDMD_PDF.SetMetadataItem(pszName, pszValue, pszDomain);
7511 : }
7512 : else
7513 : {
7514 102 : return GDALPamDataset::SetMetadataItem(pszName, pszValue, pszDomain);
7515 : }
7516 : }
7517 :
7518 : /************************************************************************/
7519 : /* GetGCPCount() */
7520 : /************************************************************************/
7521 :
7522 32 : int PDFDataset::GetGCPCount()
7523 : {
7524 32 : return m_nGCPCount;
7525 : }
7526 :
7527 : /************************************************************************/
7528 : /* GetGCPSpatialRef() */
7529 : /************************************************************************/
7530 :
7531 10 : const OGRSpatialReference *PDFDataset::GetGCPSpatialRef() const
7532 : {
7533 10 : if (!m_oSRS.IsEmpty() && m_nGCPCount != 0)
7534 6 : return &m_oSRS;
7535 4 : return nullptr;
7536 : }
7537 :
7538 : /************************************************************************/
7539 : /* GetGCPs() */
7540 : /************************************************************************/
7541 :
7542 10 : const GDAL_GCP *PDFDataset::GetGCPs()
7543 : {
7544 10 : return m_pasGCPList;
7545 : }
7546 :
7547 : /************************************************************************/
7548 : /* SetGCPs() */
7549 : /************************************************************************/
7550 :
7551 4 : CPLErr PDFDataset::SetGCPs(int nGCPCountIn, const GDAL_GCP *pasGCPListIn,
7552 : const OGRSpatialReference *poSRS)
7553 : {
7554 : const char *pszGEO_ENCODING =
7555 4 : CPLGetConfigOption("GDAL_PDF_GEO_ENCODING", "ISO32000");
7556 4 : if (nGCPCountIn != 4 && EQUAL(pszGEO_ENCODING, "ISO32000"))
7557 : {
7558 0 : CPLError(CE_Failure, CPLE_NotSupported,
7559 : "PDF driver only supports writing 4 GCPs when "
7560 : "GDAL_PDF_GEO_ENCODING=ISO32000.");
7561 0 : return CE_Failure;
7562 : }
7563 :
7564 : /* Free previous GCPs */
7565 4 : GDALDeinitGCPs(m_nGCPCount, m_pasGCPList);
7566 4 : CPLFree(m_pasGCPList);
7567 :
7568 : /* Duplicate in GCPs */
7569 4 : m_nGCPCount = nGCPCountIn;
7570 4 : m_pasGCPList = GDALDuplicateGCPs(m_nGCPCount, pasGCPListIn);
7571 :
7572 4 : m_oSRS.Clear();
7573 4 : if (poSRS)
7574 4 : m_oSRS = *poSRS;
7575 :
7576 4 : m_bProjDirty = true;
7577 :
7578 : /* Reset NEATLINE if not explicitly set by the user */
7579 4 : if (!m_bNeatLineDirty)
7580 4 : SetMetadataItem("NEATLINE", nullptr);
7581 :
7582 4 : return CE_None;
7583 : }
7584 :
7585 : #endif // #ifdef HAVE_PDF_READ_SUPPORT
7586 :
7587 : /************************************************************************/
7588 : /* GDALPDFOpen() */
7589 : /************************************************************************/
7590 :
7591 103 : GDALDataset *GDALPDFOpen(
7592 : #ifdef HAVE_PDF_READ_SUPPORT
7593 : const char *pszFilename, GDALAccess eAccess
7594 : #else
7595 : CPL_UNUSED const char *pszFilename, CPL_UNUSED GDALAccess eAccess
7596 : #endif
7597 : )
7598 : {
7599 : #ifdef HAVE_PDF_READ_SUPPORT
7600 206 : GDALOpenInfo oOpenInfo(pszFilename, eAccess);
7601 206 : return PDFDataset::Open(&oOpenInfo);
7602 : #else
7603 : return nullptr;
7604 : #endif
7605 : }
7606 :
7607 : /************************************************************************/
7608 : /* GDALPDFUnloadDriver() */
7609 : /************************************************************************/
7610 :
7611 10 : static void GDALPDFUnloadDriver(CPL_UNUSED GDALDriver *poDriver)
7612 : {
7613 : #ifdef HAVE_POPPLER
7614 10 : if (hGlobalParamsMutex != nullptr)
7615 0 : CPLDestroyMutex(hGlobalParamsMutex);
7616 : #endif
7617 : #ifdef HAVE_PDFIUM
7618 10 : if (PDFDataset::g_bPdfiumInit)
7619 : {
7620 2 : CPLCreateOrAcquireMutex(&g_oPdfiumLoadDocMutex, PDFIUM_MUTEX_TIMEOUT);
7621 : // Destroy every loaded document or page
7622 2 : TMapPdfiumDatasets::iterator itDoc;
7623 2 : TMapPdfiumPages::iterator itPage;
7624 2 : for (itDoc = g_mPdfiumDatasets.begin();
7625 2 : itDoc != g_mPdfiumDatasets.end(); ++itDoc)
7626 : {
7627 0 : TPdfiumDocumentStruct *pDoc = itDoc->second;
7628 0 : for (itPage = pDoc->pages.begin(); itPage != pDoc->pages.end();
7629 0 : ++itPage)
7630 : {
7631 0 : TPdfiumPageStruct *pPage = itPage->second;
7632 :
7633 0 : CPLCreateOrAcquireMutex(&g_oPdfiumReadMutex,
7634 : PDFIUM_MUTEX_TIMEOUT);
7635 0 : CPLCreateOrAcquireMutex(&(pPage->readMutex),
7636 : PDFIUM_MUTEX_TIMEOUT);
7637 0 : CPLReleaseMutex(pPage->readMutex);
7638 0 : CPLDestroyMutex(pPage->readMutex);
7639 0 : FPDF_ClosePage(FPDFPageFromIPDFPage(pPage->page));
7640 0 : delete pPage;
7641 0 : CPLReleaseMutex(g_oPdfiumReadMutex);
7642 : } // ~ foreach page
7643 :
7644 0 : FPDF_CloseDocument(FPDFDocumentFromCPDFDocument(pDoc->doc));
7645 0 : CPLFree(pDoc->filename);
7646 0 : VSIFCloseL(static_cast<VSILFILE *>(pDoc->psFileAccess->m_Param));
7647 0 : delete pDoc->psFileAccess;
7648 0 : pDoc->pages.clear();
7649 :
7650 0 : delete pDoc;
7651 : } // ~ foreach document
7652 2 : g_mPdfiumDatasets.clear();
7653 2 : FPDF_DestroyLibrary();
7654 2 : PDFDataset::g_bPdfiumInit = FALSE;
7655 :
7656 2 : CPLReleaseMutex(g_oPdfiumLoadDocMutex);
7657 :
7658 2 : if (g_oPdfiumReadMutex)
7659 0 : CPLDestroyMutex(g_oPdfiumReadMutex);
7660 2 : CPLDestroyMutex(g_oPdfiumLoadDocMutex);
7661 : }
7662 : #endif
7663 10 : }
7664 :
7665 : /************************************************************************/
7666 : /* PDFSanitizeLayerName() */
7667 : /************************************************************************/
7668 :
7669 827 : CPLString PDFSanitizeLayerName(const char *pszName)
7670 : {
7671 827 : if (!CPLTestBool(CPLGetConfigOption("GDAL_PDF_LAUNDER_LAYER_NAMES", "YES")))
7672 0 : return pszName;
7673 :
7674 1654 : CPLString osName;
7675 18439 : for (int i = 0; pszName[i] != '\0'; i++)
7676 : {
7677 17612 : if (pszName[i] == ' ' || pszName[i] == '.' || pszName[i] == ',')
7678 1021 : osName += "_";
7679 16591 : else if (pszName[i] != '"')
7680 16591 : osName += pszName[i];
7681 : }
7682 827 : if (osName.empty())
7683 3 : osName = "unnamed";
7684 827 : return osName;
7685 : }
7686 :
7687 : /************************************************************************/
7688 : /* GDALRegister_PDF() */
7689 : /************************************************************************/
7690 :
7691 16 : void GDALRegister_PDF()
7692 :
7693 : {
7694 16 : if (!GDAL_CHECK_VERSION("PDF driver"))
7695 0 : return;
7696 :
7697 16 : if (GDALGetDriverByName(DRIVER_NAME) != nullptr)
7698 0 : return;
7699 :
7700 16 : GDALDriver *poDriver = new GDALDriver();
7701 16 : PDFDriverSetCommonMetadata(poDriver);
7702 :
7703 : #ifdef HAVE_PDF_READ_SUPPORT
7704 16 : poDriver->pfnOpen = PDFDataset::OpenWrapper;
7705 : #endif // HAVE_PDF_READ_SUPPORT
7706 :
7707 16 : poDriver->pfnCreateCopy = GDALPDFCreateCopy;
7708 16 : poDriver->pfnCreate = PDFWritableVectorDataset::Create;
7709 16 : poDriver->pfnUnloadDriver = GDALPDFUnloadDriver;
7710 :
7711 16 : GetGDALDriverManager()->RegisterDriver(poDriver);
7712 : }
|