Use libpoppler instead of raw xpdf

preferencesAboutTextFull
Jonah Brüchert 6 years ago
parent 806ba96e13
commit 9857dbe29f
No known key found for this signature in database
GPG Key ID: A81E075ABEC80A7E
  1. 33
      src/pdf/XPDFRenderer.cpp
  2. 8
      src/pdf/XPDFRenderer.h

@ -32,6 +32,7 @@
#include <QtGui> #include <QtGui>
#include <frameworks/UBPlatformUtils.h> #include <frameworks/UBPlatformUtils.h>
#include <poppler/cpp/poppler-version.h>
#include "core/memcheck.h" #include "core/memcheck.h"
@ -51,7 +52,7 @@ XPDFRenderer::XPDFRenderer(const QString &filename, bool importingFile)
globalParams->setupBaseFonts(QFile::encodeName(UBPlatformUtils::applicationResourcesDirectory() + "/" + "fonts").data()); globalParams->setupBaseFonts(QFile::encodeName(UBPlatformUtils::applicationResourcesDirectory() + "/" + "fonts").data());
} }
mDocument = new PDFDoc(new GString(filename.toLocal8Bit()), 0, 0, 0); // the filename GString is deleted on PDFDoc desctruction mDocument = new PDFDoc(new GooString(filename.toLocal8Bit()), 0, 0, 0); // the filename GString is deleted on PDFDoc desctruction
sInstancesCount.ref(); sInstancesCount.ref();
} }
@ -99,16 +100,28 @@ QString XPDFRenderer::title() const
{ {
if (isValid()) if (isValid())
{ {
#if POPPLER_VERSION_MAJOR > 0 || POPPLER_VERSION_MINOR >= 55
Object pdfInfo = mDocument->getDocInfo();
#else
Object pdfInfo; Object pdfInfo;
mDocument->getDocInfo(&pdfInfo); mDocument->getDocInfo(&pdfInfo);
#endif
if (pdfInfo.isDict()) if (pdfInfo.isDict())
{ {
Object title;
Dict *infoDict = pdfInfo.getDict(); Dict *infoDict = pdfInfo.getDict();
if (infoDict->lookup((char*)"Title", &title)->isString()) #if POPPLER_VERSION_MAJOR > 0 || POPPLER_VERSION_MINOR >= 55
Object title = infoDict->lookup((char*)"Title");
#else
Object title;
infoDict->lookup((char*)"Title", &title);
#endif
if (title.isString())
{ {
GString *gstring = title.getString(); #if POPPLER_VERSION_MAJOR > 0 || POPPLER_VERSION_MINOR >= 72
return QString(gstring->getCString()); return QString(title.getString()->c_str());
#else
return QString(title.getString()->getCString());
#endif
} }
} }
} }
@ -172,12 +185,12 @@ QImage* XPDFRenderer::createPDFImage(int pageNumber, qreal xscale, qreal yscale,
SplashColor paperColor = {0xFF, 0xFF, 0xFF}; // white SplashColor paperColor = {0xFF, 0xFF, 0xFF}; // white
if(mSplash) if(mSplash)
delete mSplash; delete mSplash;
mSplash = new SplashOutputDev(splashModeRGB8, 1, gFalse, paperColor); mSplash = new SplashOutputDev(splashModeRGB8, 1, false, paperColor);
mSplash->startDoc(mDocument->getXRef()); mSplash->startDoc(mDocument);
int rotation = 0; // in degrees (get it from the worldTransform if we want to support rotation) int rotation = 0; // in degrees (get it from the worldTransform if we want to support rotation)
GBool useMediaBox = gFalse; bool useMediaBox = false;
GBool crop = gTrue; bool crop = true;
GBool printing = gFalse; bool printing = false;
mSliceX = 0.; mSliceX = 0.;
mSliceY = 0.; mSliceY = 0.;

@ -36,10 +36,10 @@
#include "globals/UBGlobals.h" #include "globals/UBGlobals.h"
THIRD_PARTY_WARNINGS_DISABLE THIRD_PARTY_WARNINGS_DISABLE
#include <xpdf/Object.h> #include <poppler/Object.h>
#include <xpdf/GlobalParams.h> #include <poppler/GlobalParams.h>
#include <xpdf/SplashOutputDev.h> #include <poppler/SplashOutputDev.h>
#include <xpdf/PDFDoc.h> #include <poppler/PDFDoc.h>
THIRD_PARTY_WARNINGS_ENABLE THIRD_PARTY_WARNINGS_ENABLE
class PDFDoc; class PDFDoc;

Loading…
Cancel
Save