Earlier quoted context omitted.
I'd like if there's more details on the open source software used.
i used open source solutions to built it, like libreoffice, ghostscript, google's tesseract and a bunch of other tools, Google's Tesseract: https://github.com/tesseract-ocr/tesseract
I built an online PDF management platform using open-source software
41–50 of 114 posts
Re: I built an online PDF management platform using open-source software
#42Earlier quoted context omitted.
Same here. No (F)OSS licenses to be found on the page itself. Sus. Perhaps it is simply injecting remote root vulnerabilities into the PDF's.
the web app i.e the front end part is next.js and typescript mostly, the landing page is built using astro.js, and the back end is heavily python, flask and some javascript for web-to-pdf and markdown-to-pdf, the rest is mostly python
Re: I built an online PDF management platform using open-source software
#43Unfortunately, most of the PDF work I do involves things I’m not uploading to a service - ever. I don’t care if they’re “deleted immediately after processing” - they left my control. This sort of software would be great if it were 100% offline. This isn’t just a niche issue either: this is a very real consideration for any corporate user. More companies are taking data loss and security issues seriously, which often…
In that case, you can use https://www.pdftool.org/ , which runs in the browser but offline and never uploads your files to any server.
Re: I built an online PDF management platform using open-source software
#44Re: I built an online PDF management platform using open-source software
#45There are a collection of open source tools, everyone which is its own interface that does a subset of things.
The alternative, which is an online service, it is not great...
Re: I built an online PDF management platform using open-source software
#46Re: I built an online PDF management platform using open-source software
#47I am always surprised there is absolutely nothing like the Adobe Acrobat Pro on the open source space. There are a collection of open source tools, everyone which is its own interface that does a subset of things. The alternative, which is an online service, it is not great...
Re: I built an online PDF management platform using open-source software
#48Earlier quoted context omitted.
the web app i.e the front end part is next.js and typescript mostly, the landing page is built using astro.js, and the back end is heavily python, flask and some javascript for web-to-pdf and markdown-to-pdf, the rest is mostly python
just curious: what do you use to convert web pages to pdf?
A neat trick to convert HTML to PDF in a browser environment is to open a new browser window, load the HTML in it, and call print() on it, like here: https://stackoverflow.com/a/33890644/5821. May be OK for an internal tool.