Git Product home page Git Product logo

Comments (3)

lenke182 avatar lenke182 commented on September 23, 2024

This seems to work great on most of my tested pdf files.

Some pdf files (also around 250 pages) are causing a timeout of pdfseparate. Problem is, that the script at that point doesn't know the page count yet, so the timeout can't be calculated proportionally.

https://github.com/firstlookmedia/dangerzone-converter/blob/master/scripts/document-to-pixels-unpriv#L151

Separating document into pages
Error separating document into pages, pdfseparate timed out after 60 seconds

sudo: unable to resolve host 9227720a63d0: Temporary failure in name resolution

from dangerzone.

yveszoundi avatar yveszoundi commented on September 23, 2024

@lenke182 , I encountered similar issues with large PDF documents of roughly 700 pages. I ended up increasing timeouts (proportional to page count) and switching from pdfseparate to pdftk.

My solution consisted into the following changes:

  • Global timeout based on script leveraging pdfinfo: global_timeout = pdfinfo_page_ct * 30
  • Changes in dangerzone-converter
    • Introduce a new dependency pdftk and libvips-tools in the Dockerfile
    • In dangerzone-converter update all scripts and set the process run timeout to global_timeout
    • In document-to-pixels-unpriv, switch from pdfseparate to pdftk: args = ["pdftk", pdf_filename, "burst", "output", "/tmp/page-%d.pdf"]
    • In document-to-pixels-unpriv, swap pdftocairo with vips: ["vips", "pdfload", pdf_filename, png_filename]. vips appears faster than pdftocairo but I didn't benchmark it.
  • Changes in dangerzone UI project
    • Use my custom Docker image by updating container.py and global_common.py
    • In tasks.py, skip image pulling as I'm using my own Docker local image.

There are still cases where the GUI stops printing command line output (10+MB PDF files)... I'm no Python connoisseur but in such cases I just "watch the contents" of the Docker volume folder and copy the generated safe PDF to its final destination (once the Docker process exits).

from dangerzone.

yveszoundi avatar yveszoundi commented on September 23, 2024

@micahflee, I believe that for big PDF files many will face problems. My main use case for dangerzone is reading IT e-books (often 200+ pages). I'm only testing on an iMac, my other system runs Qubes OS.

from dangerzone.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.