Earlier quoted context omitted.
>many nontrivial and creative ways to do pdf processing They're all wrapping PDFlib and provide the same functionality.
I am already well served by ghostscript, GIMP, Imagemagick, etc: Optimize PDF: #!/bin/bash INPUT="$1" OUTPUT="$(mktemp --suffix=.pdf)" gs -sDEVICE=pdfwrite -dCompatibilityLevel=1.4 -dPDFSETTINGS=/ebook \ -dNOPAUSE -dQUIET -dBATCH -sOutputFile="$OUTPUT" "$INPUT" mv "$OUTPUT" "$INPUT" Merge PDF: #!/bin/sh gs -q -dNOPAUSE -dBATCH -sDEVICE=pdfwrite \ -dCompatibilityLevel=1.3 -dPDFSETTINGS=/ebook \ -sOutputFile=merged.pdf…
Show HN: Pdfwithlove – PDF tools that run 100% locally (no uploads, no back end)
91–100 of 133 posts
Re: Show HN: Pdfwithlove – PDF tools that run 100% locally (no uploads, no back end)
#92Re: Show HN: Pdfwithlove – PDF tools that run 100% locally (no uploads, no back end)
#93> make millions How? Who? Most of them are freemium, so they're balancing resources funded by subscriptions against the majority free user usage. And is this local first (as it says on the website) or local only ?
Re: Show HN: Pdfwithlove – PDF tools that run 100% locally (no uploads, no back end)
#94Earlier quoted context omitted.
I am already well served by ghostscript, GIMP, Imagemagick, etc: Optimize PDF: #!/bin/bash INPUT="$1" OUTPUT="$(mktemp --suffix=.pdf)" gs -sDEVICE=pdfwrite -dCompatibilityLevel=1.4 -dPDFSETTINGS=/ebook \ -dNOPAUSE -dQUIET -dBATCH -sOutputFile="$OUTPUT" "$INPUT" mv "$OUTPUT" "$INPUT" Merge PDF: #!/bin/sh gs -q -dNOPAUSE -dBATCH -sDEVICE=pdfwrite \ -dCompatibilityLevel=1.3 -dPDFSETTINGS=/ebook \ -sOutputFile=merged.pdf…
Your commands to process PDF with Ghostscript are lossy (they lose lots of metadata and in minor ways they also change how the PDF renders), and they produce very large PDF files.
Re: Show HN: Pdfwithlove – PDF tools that run 100% locally (no uploads, no back end)
#95Re: Show HN: Pdfwithlove – PDF tools that run 100% locally (no uploads, no back end)
#96Earlier quoted context omitted.
[flagged]
“Sorry about that. Some people jump to conclusions about things they don’t fully understand. I’m just trying to build something useful and contribute to the community, but reactions like this can make it difficult
Re: Show HN: Pdfwithlove – PDF tools that run 100% locally (no uploads, no back end)
#97Great job! If it's all on client you should make a PWA out of it so it can be installed and used offline. Built a client only webapp myself and offline usage is the main thing users ask about.
Yeah, I’ll do that. I have a Chrome extension that I’m planning to make paid, and I may also release a desktop version. I’m thinking of pricing it cheaply—around $2 for lifetime access
Re: Show HN: Pdfwithlove – PDF tools that run 100% locally (no uploads, no back end)
#98MacOS preview tool will do most of this.