Earlier quoted context omitted.
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
My immediate thought is if it’s only $2 it can’t be very good.
Show HN: Pdfwithlove – PDF tools that run 100% locally (no uploads, no back end)
101–110 of 133 posts
Re: Show HN: Pdfwithlove – PDF tools that run 100% locally (no uploads, no back end)
#102Earlier 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…
Realistically, most 'normal users' have PDF needs like these links and we as tech people can safely give these sites to non-technical people and have confidence their data isn't being stolen on remote dodgy servers (think gas / electricity bills, invoices, bank statements etc which is a PII gold pot).
Re: Show HN: Pdfwithlove – PDF tools that run 100% locally (no uploads, no back end)
#103All of these are already (and have already been available) for ages on linux
Re: Show HN: Pdfwithlove – PDF tools that run 100% locally (no uploads, no back end)
#104* it doesn't seem to select/edit existing components
* Delete button doesn't work on a drawing
* Insert text button doesn't work
On Google Chrome. Am I the only one who tried this out?
Re: Show HN: Pdfwithlove – PDF tools that run 100% locally (no uploads, no back end)
#105Seems like Clientside PDF editors are the new "hello world" app these days. From the last couple months on Show HN alone: Show HN: PDF Quick – Free PDF tools with 100% client-side processing https://news.ycombinator.com/item?id=46094734 Show HN: A privacy-first, client-side toolbox (PDF, Imgs, Dev) no server uploads https://news.ycombinator.com/item?id=46018221 Show HN: FileZen – Client-side PDF and Video tools using…
Re: Show HN: Pdfwithlove – PDF tools that run 100% locally (no uploads, no back end)
#106Earlier 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…
pdftops -paper A4 -expand -level3 file.pdf # I'm from EU, so A4 is my common paper format
ps2pdf14 -dEmbedAllFonts=true \
-dUseFlateCompression=true \
-dOptimize=true \
-dProcessColorModel=/DeviceRGB \
-r72 \
-dDownsampleGrayImages=true \
-dGrayImageResolution=150 \
-dAutoFilterGrayImages=false \
-dGrayImageDownsampleType=/Bicubic \
-dDownsampleMonoImages=true \
-dMonoImageResolution=150 \
-dMonoImageDownsampleType=/Subsample \
-dDownsampleColorImages=true \
-dColorImageResolution=150 \
-dAutoFilterColorImages=false \
-dColorImageDownsampleType=/Bicubic \
-dPDFSETTINGS=/ebook \
-dNOSAFER \
-dALLOWPSTRANSPARENCY \
-dShowAnnots=false \
file.ps compressed.pdfRe: Show HN: Pdfwithlove – PDF tools that run 100% locally (no uploads, no back end)
#107I wonder why everything now is written in web frameworks. Meanwhile I am currently using macos which has a magnificent PDF tool called... Preview. It allows annotate, merge, realign pages, insert one page from another document or even a JPEG-scan, etc. However, before the courtesy of my company giving me a macos-enabled gear - I had to cope with PDFs using multiple apps on Windows and Linux. Recently I got there agai…
These online converters are immensely popular for a reason. They also used to do everything serverside and had ads all around which is obviously terrible security wise. So having WASM versions is much better.
Since these are link away they are easy to send and save. I help self-host a podcast and you need very particular settings for the export of the audio file. Instead of cooking up some automated solution, editors have bookmark of this https://ffmpeg-online.vercel.app/ with all the ffmpeg settings correctly selected and they can do the final file themselves for both their preview and production.
Compare that to having multiple people with multiple platforms having to install and learn to use some gui app.
Re: Show HN: Pdfwithlove – PDF tools that run 100% locally (no uploads, no back end)
#108Earlier 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…
You're being downvoted because not everyone has CLI access to a server and the required ghostscript binaries etc. Realistically, most 'normal users' have PDF needs like these links and we as tech people can safely give these sites to non-technical people and have confidence their data isn't being stolen on remote dodgy servers (think gas / electricity bills, invoices, bank statements etc which is a PII gold pot).
I have no confidence in any website, especially the one that claims to be local-only but can technically change on a whim of the developer once it starts getting enough traffic from users.
OTOH, I trust 30+ years old software sitting on on my hard drive not to phone home on every keystroke.
Re: Show HN: Pdfwithlove – PDF tools that run 100% locally (no uploads, no back end)
#109Earlier 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…
To better compress my personal preference is pdftops -paper A4 -expand -level3 file.pdf # I'm from EU, so A4 is my common paper format ps2pdf14 -dEmbedAllFonts=true \ -dUseFlateCompression=true \ -dOptimize=true \ -dProcessColorModel=/DeviceRGB \ -r72 \ -dDownsampleGrayImages=true \ -dGrayImageResolution=150 \ -dAutoFilterGrayImages=false \ -dGrayImageDownsampleType=/Bicubic \ -dDownsampleMonoImages=true \ -dMonoImag…
And for the rest, `-dPDFSETTINGS=/ebook` should already have most of the values that you set explicitely.
Re: Show HN: Pdfwithlove – PDF tools that run 100% locally (no uploads, no back end)
#110Seems like Clientside PDF editors are the new "hello world" app these days. From the last couple months on Show HN alone: Show HN: PDF Quick – Free PDF tools with 100% client-side processing https://news.ycombinator.com/item?id=46094734 Show HN: A privacy-first, client-side toolbox (PDF, Imgs, Dev) no server uploads https://news.ycombinator.com/item?id=46018221 Show HN: FileZen – Client-side PDF and Video tools using…
Half of them also have a very obviously vibecoded front-end that looks exactly the same