//======================================================================== // // pdftohtml.cc // // // Copyright 1999-2000 G. Ovtcharov //======================================================================== //======================================================================== // // Modified under the Poppler project - http://poppler.freedesktop.org // // All changes made under the Poppler project to this file are licensed // under GPL version 2 or later // // Copyright (C) 2007-2008, 2010 Albert Astals Cid // Copyright (C) 2010 Hib Eris // Copyright (C) 2010 Mike Slegeir // Copyright (C) 2010 Suzuki Toshiya // Copyright (C) 2010 OSSD CDAC Mumbai by Leena Chourey (leenac@cdacmumbai.in) and Onkar Potdar (onkar@cdacmumbai.in) // // To see a description of the changes please see the Changelog file that // came with your tarball or type make ChangeLog if you are building from git // //======================================================================== #include "config.h" #include #include #include #include #include #ifdef HAVE_DIRENT_H #include #endif #include #include "parseargs.h" #include "goo/GooString.h" #include "goo/gmem.h" #include "Object.h" #include "Stream.h" #include "Array.h" #include "Dict.h" #include "XRef.h" #include "Catalog.h" #include "Page.h" #include "PDFDoc.h" #include "PDFDocFactory.h" #include "HtmlOutputDev.h" #ifdef HAVE_SPLASH #include "SplashOutputDev.h" #include "splash/SplashBitmap.h" #endif #include "PSOutputDev.h" #include "GlobalParams.h" #include "Error.h" #include "DateInfo.h" #include "goo/gfile.h" #ifndef GHOSTSCRIPT # define GHOSTSCRIPT "gs" #endif static int firstPage = 1; static int lastPage = 0; static GBool rawOrder = gTrue; GBool printCommands = gTrue; static GBool printHelp = gFalse; GBool printHtml = gFalse; GBool complexMode=gFalse; GBool singleHtml=gFalse; // singleHtml GBool ignore=gFalse; static GBool useSplash=gTrue; static char extension[5]="png"; static double scale=1.5; GBool noframes=gFalse; GBool stout=gFalse; GBool xml=gFalse; static GBool errQuiet=gFalse; static GBool noDrm=gFalse; GBool showHidden = gFalse; GBool noMerge = gFalse; static char ownerPassword[33] = ""; static char userPassword[33] = ""; static char gsDevice[33] = "none"; static GBool printVersion = gFalse; static GooString* getInfoString(Dict *infoDict, char *key); static GooString* getInfoDate(Dict *infoDict, char *key); static char textEncName[128] = ""; static const ArgDesc argDesc[] = { {"-f", argInt, &firstPage, 0, "first page to convert"}, {"-l", argInt, &lastPage, 0, "last page to convert"}, /*{"-raw", argFlag, &rawOrder, 0, "keep strings in content stream order"},*/ {"-q", argFlag, &errQuiet, 0, "don't print any messages or errors"}, {"-h", argFlag, &printHelp, 0, "print usage information"}, {"-help", argFlag, &printHelp, 0, "print usage information"}, {"-p", argFlag, &printHtml, 0, "exchange .pdf links by .html"}, {"-c", argFlag, &complexMode, 0, "generate complex document"}, {"-s", argFlag, &singleHtml, 0, "generate single document that includes all pages"}, {"-i", argFlag, &ignore, 0, "ignore images"}, {"-noframes", argFlag, &noframes, 0, "generate no frames"}, {"-stdout" ,argFlag, &stout, 0, "use standard output"}, {"-zoom", argFP, &scale, 0, "zoom the pdf document (default 1.5)"}, {"-xml", argFlag, &xml, 0, "output for XML post-processing"}, {"-hidden", argFlag, &showHidden, 0, "output hidden text"}, {"-nomerge", argFlag, &noMerge, 0, "do not merge paragraphs"}, {"-enc", argString, textEncName, sizeof(textEncName), "output text encoding name"}, {"-dev", argString, gsDevice, sizeof(gsDevice), "output device name for Ghostscript (png16m, jpeg etc)"}, {"-fmt", argString, extension, sizeof(extension), "image file format for Splash output (png or jpg)"}, {"-v", argFlag, &printVersion, 0, "print copyright and version info"}, {"-opw", argString, ownerPassword, sizeof(ownerPassword), "owner password (for encrypted files)"}, {"-upw", argString, userPassword, sizeof(userPassword), "user password (for encrypted files)"}, {"-nodrm", argFlag, &noDrm, 0, "override document DRM settings"}, {NULL} }; #ifdef HAVE_SPLASH class SplashOutputDevNoText : public SplashOutputDev { public: SplashOutputDevNoText(SplashColorMode colorModeA, int bitmapRowPadA, GBool reverseVideoA, SplashColorPtr paperColorA, GBool bitmapTopDownA = gTrue, GBool allowAntialiasA = gTrue) : SplashOutputDev(colorModeA, bitmapRowPadA, reverseVideoA, paperColorA, bitmapTopDownA, allowAntialiasA) { } virtual ~SplashOutputDevNoText() { } void drawChar(GfxState *state, double x, double y, double dx, double dy, double originX, double originY, CharCode code, int nBytes, Unicode *u, int uLen) { } GBool beginType3Char(GfxState *state, double x, double y, double dx, double dy, CharCode code, Unicode *u, int uLen) { return false; } void endType3Char(GfxState *state) { } void beginTextObject(GfxState *state) { } GBool deviceHasTextClip(GfxState *state) { return false; } void endTextObject(GfxState *state) { } GBool interpretType3Chars() { return gFalse; } }; #endif int main(int argc, char *argv[]) { PDFDoc *doc = NULL; GooString *fileName = NULL; GooString *docTitle = NULL; GooString *author = NULL, *keywords = NULL, *subject = NULL, *date = NULL; GooString *htmlFileName = NULL; GooString *psFileName = NULL; HtmlOutputDev *htmlOut = NULL; #ifdef HAVE_SPLASH SplashOutputDev *splashOut = NULL; #endif PSOutputDev *psOut = NULL; GBool ok; char *p; GooString *ownerPW, *userPW; Object info; char * extsList[] = {"png", "jpeg", "bmp", "pcx", "tiff", "pbm", NULL}; // parse args ok = parseArgs(argDesc, &argc, argv); if (!ok || argc < 2 || argc > 3 || printHelp || printVersion) { fprintf(stderr, "pdftohtml version %s\n", PACKAGE_VERSION); fprintf(stderr, "%s\n", popplerCopyright); fprintf(stderr, "%s\n", "Copyright 1999-2003 Gueorgui Ovtcharov and Rainer Dorsch"); fprintf(stderr, "%s\n\n", xpdfCopyright); if (!printVersion) { printUsage("pdftohtml", " [ ]", argDesc); } exit(1); } // init error file //errorInit(); // read config file globalParams = new GlobalParams(); if (errQuiet) { globalParams->setErrQuiet(errQuiet); printCommands = gFalse; // I'm not 100% what is the differecne between them } if (textEncName[0]) { globalParams->setTextEncoding(textEncName); if( !globalParams->getTextEncoding() ) { goto error; } } // open PDF file if (ownerPassword[0]) { ownerPW = new GooString(ownerPassword); } else { ownerPW = NULL; } if (userPassword[0]) { userPW = new GooString(userPassword); } else { userPW = NULL; } fileName = new GooString(argv[1]); if (fileName->cmp("-") == 0) { delete fileName; fileName = new GooString("fd://0"); } doc = PDFDocFactory().createPDFDoc(*fileName, ownerPW, userPW); if (userPW) { delete userPW; } if (ownerPW) { delete ownerPW; } if (!doc->isOk()) { goto error; } // check for copy permission if (!doc->okToCopy()) { if (!noDrm) { error(-1, "Copying of text from this document is not allowed."); goto error; } fprintf(stderr, "Document has copy-protection bit set.\n"); } // construct text file name if (argc == 3) { GooString* tmp = new GooString(argv[2]); if (!xml) { if (tmp->getLength() >= 5) { p = tmp->getCString() + tmp->getLength() - 5; if (!strcmp(p, ".html") || !strcmp(p, ".HTML")) { htmlFileName = new GooString(tmp->getCString(), tmp->getLength() - 5); } } } else { if (tmp->getLength() >= 4) { p = tmp->getCString() + tmp->getLength() - 4; if (!strcmp(p, ".xml") || !strcmp(p, ".XML")) { htmlFileName = new GooString(tmp->getCString(), tmp->getLength() - 4); } } } if (!htmlFileName) { htmlFileName =new GooString(tmp); } delete tmp; } else if (fileName->cmp("fd://0") == 0) { error(-1, "You have to provide an output filename when reading form stdin."); goto error; } else { p = fileName->getCString() + fileName->getLength() - 4; if (!strcmp(p, ".pdf") || !strcmp(p, ".PDF")) htmlFileName = new GooString(fileName->getCString(), fileName->getLength() - 4); else htmlFileName = fileName->copy(); // htmlFileName->append(".html"); } if (scale>3.0) scale=3.0; if (scale<0.5) scale=0.5; if (complexMode || singleHtml) { //noframes=gFalse; stout=gFalse; } if (stout) { noframes=gTrue; complexMode=gFalse; singleHtml=gFalse; } if (xml) { complexMode = gTrue; singleHtml = gFalse; noframes = gTrue; noMerge = gTrue; } // get page range if (firstPage < 1) firstPage = 1; if (lastPage < 1 || lastPage > doc->getNumPages()) lastPage = doc->getNumPages(); doc->getDocInfo(&info); if (info.isDict()) { docTitle = getInfoString(info.getDict(), "Title"); author = getInfoString(info.getDict(), "Author"); keywords = getInfoString(info.getDict(), "Keywords"); subject = getInfoString(info.getDict(), "Subject"); date = getInfoDate(info.getDict(), "ModDate"); if( !date ) date = getInfoDate(info.getDict(), "CreationDate"); } info.free(); if( !docTitle ) docTitle = new GooString(htmlFileName); if( strcmp("none", gsDevice) ) { useSplash = gFalse; /* determine extensions of output background images */ int i; for(i = 0; extsList[i]; i++) { if( strstr(gsDevice, extsList[i]) != (char *) NULL ) { strncpy(extension, extsList[i], sizeof(extension)); break; } } } #ifndef HAVE_SPLASH if( useSplash ) { fprintf(stderr, "You are trying to use the -fmt option but your pdftohtml was built without support for it. Please use the -dev option\n"); delete docTitle; delete author; delete keywords; delete subject; delete date; delete htmlFileName; delete globalParams; delete fileName; delete doc; return -1; } #endif if (!singleHtml) rawOrder = complexMode; // todo: figure out what exactly rawOrder do :) else rawOrder = singleHtml; // write text file htmlOut = new HtmlOutputDev(htmlFileName->getCString(), docTitle->getCString(), author ? author->getCString() : NULL, keywords ? keywords->getCString() : NULL, subject ? subject->getCString() : NULL, date ? date->getCString() : NULL, extension, rawOrder, firstPage, doc->getCatalog()->getOutline()->isDict()); delete docTitle; if( author ) { delete author; } if( keywords ) { delete keywords; } if( subject ) { delete subject; } if( date ) { delete date; } if (htmlOut->isOk()) { doc->displayPages(htmlOut, firstPage, lastPage, 72 * scale, 72 * scale, 0, gTrue, gFalse, gFalse); if (!xml) { htmlOut->dumpDocOutline(doc->getCatalog()); } } if ((complexMode || singleHtml) && !xml && !ignore) { if(useSplash) { #ifdef HAVE_SPLASH GooString *imgFileName = NULL; // White paper color SplashColor color; color[0] = color[1] = color[2] = 255; // If the user specified "jpg" use JPEG, otherwise PNG SplashImageFileFormat format = strcmp(extension, "jpg") ? splashFormatPng : splashFormatJpeg; splashOut = new SplashOutputDevNoText(splashModeRGB8, 4, gFalse, color); splashOut->startDoc(doc->getXRef()); for (int pg = firstPage; pg <= lastPage; ++pg) { doc->displayPage(splashOut, pg, 72 * scale, 72 * scale, 0, gTrue, gFalse, gFalse); SplashBitmap *bitmap = splashOut->getBitmap(); imgFileName = GooString::format("{0:s}{1:03d}.{2:s}", htmlFileName->getCString(), pg, extension); bitmap->writeImgFile(format, imgFileName->getCString(), 72 * scale, 72 * scale); delete imgFileName; } delete splashOut; #endif } else { int h=xoutRound(htmlOut->getPageHeight()/scale); int w=xoutRound(htmlOut->getPageWidth()/scale); //int h=xoutRound(doc->getPageHeight(1)/scale); //int w=xoutRound(doc->getPageWidth(1)/scale); psFileName = new GooString(htmlFileName->getCString()); psFileName->append(".ps"); psOut = new PSOutputDev(psFileName->getCString(), doc, doc->getXRef(), doc->getCatalog(), NULL, firstPage, lastPage, psModePS, w, h); psOut->setDisplayText(gFalse); doc->displayPages(psOut, firstPage, lastPage, 72, 72, 0, gTrue, gFalse, gFalse); delete psOut; /*sprintf(buf, "%s -sDEVICE=png16m -dBATCH -dNOPROMPT -dNOPAUSE -r%d -sOutputFile=%s%%03d.png -g%dx%d -q %s", GHOSTSCRIPT, resolution, htmlFileName->getCString(), w, h, psFileName->getCString());*/ GooString *gsCmd = new GooString(GHOSTSCRIPT); GooString *tw, *th, *sc; gsCmd->append(" -sDEVICE="); gsCmd->append(gsDevice); gsCmd->append(" -dBATCH -dNOPROMPT -dNOPAUSE -r"); sc = GooString::fromInt(static_cast(72*scale)); gsCmd->append(sc); gsCmd->append(" -sOutputFile="); gsCmd->append("\""); gsCmd->append(htmlFileName); gsCmd->append("%03d."); gsCmd->append(extension); gsCmd->append("\" -g"); tw = GooString::fromInt(static_cast(scale*w)); gsCmd->append(tw); gsCmd->append("x"); th = GooString::fromInt(static_cast(scale*h)); th = GooString::fromInt(static_cast(scale*h)); gsCmd->append(th); gsCmd->append(" -q \""); gsCmd->append(psFileName); gsCmd->append("\""); // printf("running: %s\n", gsCmd->getCString()); if( !executeCommand(gsCmd->getCString()) && !errQuiet) { error(-1, "Failed to launch Ghostscript!\n"); } unlink(psFileName->getCString()); delete tw; delete th; delete sc; delete gsCmd; delete psFileName; } } delete htmlOut; // clean up error: if(doc) delete doc; delete fileName; if(globalParams) delete globalParams; if(htmlFileName) delete htmlFileName; HtmlFont::clear(); // check for memory leaks Object::memCheck(stderr); gMemReport(stderr); return 0; } static GooString* getInfoString(Dict *infoDict, char *key) { Object obj; GooString *s1 = NULL; if (infoDict->lookup(key, &obj)->isString()) { s1 = new GooString(obj.getString()); } obj.free(); return s1; } static GooString* getInfoDate(Dict *infoDict, char *key) { Object obj; char *s; int year, mon, day, hour, min, sec, tz_hour, tz_minute; char tz; struct tm tmStruct; GooString *result = NULL; char buf[256]; if (infoDict->lookup(key, &obj)->isString()) { s = obj.getString()->getCString(); // TODO do something with the timezone info if ( parseDateString( s, &year, &mon, &day, &hour, &min, &sec, &tz, &tz_hour, &tz_minute ) ) { tmStruct.tm_year = year - 1900; tmStruct.tm_mon = mon - 1; tmStruct.tm_mday = day; tmStruct.tm_hour = hour; tmStruct.tm_min = min; tmStruct.tm_sec = sec; tmStruct.tm_wday = -1; tmStruct.tm_yday = -1; tmStruct.tm_isdst = -1; mktime(&tmStruct); // compute the tm_wday and tm_yday fields if (strftime(buf, sizeof(buf), "%Y-%m-%dT%H:%M:%S+00:00", &tmStruct)) { result = new GooString(buf); } else { result = new GooString(s); } } else { result = new GooString(s); } } obj.free(); return result; }