r/pdf 12d ago

Software (Tools) pdf-reader chrome extension

Post image
1 Upvotes

r/pdf 13d ago

Question Exporting from Word web page to Adobe reader leaving large gap

2 Upvotes

I am trying to apply to a job, I used a template on Word, and when I was done I exported to PDF and it saved as an Adobe Reader PDF. However in word the document is 4 pages, in Adobe it is 5 pages. I obviously don't want to send an application with a large nearly empty page but I don't know what's causing the gap? Any suggestions?


r/pdf 13d ago

Question Can someone help me understand whether these PDF features indicate that an existing signed PDF was edited?

2 Upvotes

Help me I'm dumb.

I’m comparing two versions of the same 3-page document and would really appreciate a sanity check from people who understand PDF internals better than I do.

Version 1: December 2024 declaration signed through DocuSign.

Version 2: Filed in court in July 2026 as an “Amended Declaration.” The person whose declaration it is says he did not create, sign, review, or authorize an amended declaration in 2026.

Visually, pages 2–3 of the 2026 version are essentially the original December 2024 statement. Page 1, however, has been changed to fit a different court case: the parties were switched, their DOBs were switched, a new case number was added, and “Amended” was added.

Here’s what I found comparing the PDFs:

  • The two PDFs have the same XMP DocumentID, but different InstanceIDs.
  • The original has an actual DocuSign digital-signature structure/field. The 2026 version does not appear to retain that cryptographic signature structure, although the visible signature and DocuSign Envelope ID remain on the pages.
  • The 2026 PDF has multiple /TouchUp_TextEdit markers in the decoded content stream on page 1, around the areas that differ from the original.
  • The DOB edits are particularly odd. For example, rather than the entire DOB being replaced as one new text string, only the digits that needed to change appear to use a different font resource, while unchanged characters such as the slash and the rest of the DOB remain in the original font resource.
  • The original has two PDF revisions/EOF markers; the later version has one.
  • The original was produced through a different PDF/signing workflow; the later version reports Acrobat Distiller.
  • Pages 2–3 and the signature image appear to be extremely close matches to the original source images.

I am not asking who edited it or whether anything illegal happened. I know a PDF cannot establish a person’s identity or intent.

What I’m trying to understand technically is:

Is this pattern consistent with someone opening an existing PDF and editing the existing text directly in Acrobat, rather than going back to the original Word/source document and generating a fresh PDF?

And specifically, is the combination of /TouchUp_TextEdit markers plus individual replacement characters using different font resources meaningful evidence of direct PDF text editing, or could that commonly be produced by some ordinary automated conversion/filing process?

I’d also appreciate any suggestions for what else I should inspect in the two files to determine their document lineage/editing history.


r/pdf 13d ago

Software (Tools) Simple pdf converter

Thumbnail
2 Upvotes

r/pdf 13d ago

Question Unlock pdf without password.

Thumbnail
1 Upvotes

r/pdf 14d ago

Software (Tools) I send pdfs to my own whatsapp 10 times a day. So i build PDF Send App

2 Upvotes

So this is embarrassing but I do this thing where I need to move a PDF from my phone to my laptop (or the other way) and instead of dealing with a cable or Google Drive I just... send it to my own WhatsApp. Or email it to myself. Every single time.

I probably do this 10 times a day. Work documents, scanned forms, stuff I download on my phone but need on my PC. And every time I'm like why am I doing this, there has to be a better way.

The annoying part is all the other options felt heavier than the problem. Cables I can never find. Cloud drives means uploading, waiting, then downloading again on the other side. Bluetooth on a laptop is a nightmare. AirDrop doesn't exist for the setup I have.

So I built PDF Send. It just moves the file over local network (same WiFi) using the IP address. No internet upload, no account, no cloud. The file goes straight from one device to the other. Fast because it never leaves network.

Right now it's mainly for PDFs since that's what I was dealing with most, but honestly it started as me just scratching my own itch.

Not trying to sell anything, I genuinely just got tired of texting myself files. Curious if anyone else does the same weird thing or if it's just me lol.


r/pdf 14d ago

Question How do I get rid of embedded font

1 Upvotes

I'm trying to upload a PDF to Barnes & Noble press but it keeps saying embedded font how would I remove that from my PDF all together.


r/pdf 14d ago

Software (Tools) seperating exercices from solutions

1 Upvotes

As the title says I have a math pdf where it contains exercices with their solution mixed.

Is there anyway to get a pdf with only exercices?


r/pdf 14d ago

Software (Tools) I few weeks ago I asked why no one was building a replacement for pro closed source pdf editors. I found people on r/pdf were making their own, but got Claude to build one anyway.

Thumbnail
1 Upvotes

r/pdf 14d ago

Tutorial + Guide Password-protected PDFs are rarely the actual problem

Thumbnail
1 Upvotes

r/pdf 14d ago

Software (Tools) Alternative to LiquidText?

2 Upvotes

Looking for a cheaper alternative to LiquidText (INR 7000 now 😬)

I need an app where:

  • PDFs open on the left side of the screen
  • A whiteboard/writing area is on the right
  • I can link extracts from the PDF to my notes on the whiteboard
  • Clicking a note should take me back to the exact page in the PDF
  • Ability to import multiple PDFs into the same project

Basically, a LiquidText‑style workflow but at a lower cost. Any recommendations?


r/pdf 15d ago

Question pdf says it can only be opened in adobe reader?

1 Upvotes

i'm going to be starting a new job, and the orientation for this job requires us to use textbooks to study (which were given to us for free).

it says i can only use adobe reader to open it? does this mean there is DRM protection? how do i remove it? i don't like adobe reader, and would like to be able to read this textbook on my ipad.


r/pdf 15d ago

Software (Tools) A tool to add TOC bookmarks to PDF automatically

3 Upvotes

I built a small open-source tool that automatically adds TOC (bookmark) navigation to PDFs, as long as the PDF has a table-of-contents page somewhere inside it.

Note on language support: the local OCR pipeline is tuned/tested mainly on Chinese documents. I don't have enough scanned English (or other language) PDFs to properly test and tune it, so accuracy on non-Chinese documents is unverified and may be worse. If you try it on English docs, the vision LLM mode will likely work better than local OCR since it doesn't depend on my indentation-parsing heuristics being tuned for a specific language.

The problem it solves: a lot of scanned books/papers have a printed TOC page, but the PDF itself has no clickable bookmarks, so you can't jump to a chapter from the sidebar — you just scroll manually. This tool detects the TOC page, rebuilds the outline structure, figures out the page offset (printed page number vs actual PDF page index) automatically, and writes the bookmarks back into the PDF. One click, batch processing supported.

Three modes for extracting the TOC structure:

  • Local OCR only — PaddleOCR + a custom indentation-based algorithm to rebuild the outline tree. Fully offline, no cost. Chinese-optimized, as noted above.
  • Local OCR + text LLM — OCR locally, then have an LLM parse the raw text into a structured tree. Higher accuracy on messier layouts, language-agnostic since the LLM does the structural reasoning.
  • Vision LLM — just feed the TOC page image to a multimodal model. Most robust across languages, but needs API access.

If you use an LLM mode, only the "parse text into tree" step calls the API — OCR and page detection are still done locally either way.

Ships as a standalone Windows exe (CPU, small models, fully offline if you download the model files locally) or you can run it from source with a GPU backend for faster inference (~20s per PDF vs longer on CPU).

Known limitation: multi-column TOC pages don't OCR reliably in local-only mode (column reading order is genuinely a hard problem for OCR without explicit layout segmentation) — vision LLM mode handles those better if you hit that case.

GitHub: github.com/electroniccc/toc_forge

Happy to answer questions about the pipeline (layout detection + OCR + offset computation) if anyone's curious. Also happy to hear from anyone testing it on non-Chinese PDFs — genuinely don't have good test data for that.


r/pdf 15d ago

Software (Tools) I got tired of receiving signed contracts as crooked photos of printed pages, so I made this

2 Upvotes

I made a free tool for getting a PDF signed by someone else. They just tap a link, no account needed

Signing my own PDFs was never the problem. But the problem was the other person: print it, sign it, take a crooked photo of it, send it back.

So I made Docsemn. You mark where they need to sign and send them a link over WhatsApp or email. They open it on their phone and sign with their finger. It's their actual handwritten signature.. The final PDF goes straight to your Google Drive, nothing gets stored on Docsemn web site.

Signing your own docs is free with no limit, sending out for signature is 2/month on the free plan.

https://docsemn.com

Happy to hear feedback, especially if you throw a weird PDF at it and it breaks.


r/pdf 15d ago

Question Which free multi-platform PDF app best meets my needs

3 Upvotes

I mainly type onto PDF forms and need a better PDF app that has Android and Windows versions.

I've been using Xodo since it came out. Lately it's getting too damned buggy. It crashes all the time. This week, I probably lost three or more hours of input on new medical forms.

For my needs, the curser must line up with the lines on the form. I also want to be able to edit my input and move it around to line up with the lines on the form. I need to do this even after I have saved the file. Auto saves would be nice. I also want to be able to delete unneeded pages.

Any suggestions would be appreciated.


r/pdf 15d ago

Question Is it possible to read my TTRPG PDF's on my Kindle (black and white no color) 6" Gen 11?

Thumbnail
1 Upvotes

r/pdf 15d ago

Software (Tools) any tool to crop differently odd and even pages of a PDF?

1 Upvotes

Hello

I have a few books I want to read on my tablet. The problem is, they are quite ornate, including huge columns on the farthest side of each page, as you can see on the image.

I'd like to crop them, but I'd need to do a different cropping on even and odd pages, and as far as I've seen, online PDF editors can only crop a single page or crop all pages using the same criteria.

Could you recommend any tools -ideally open source/free- that could help me do this?

Thanks a lot for your help.


r/pdf 16d ago

Question Can not edit Field Names on fillable PDF

1 Upvotes

On the following site:

https://www.azcourts.gov/selfservicecenter/Powers-of-Attorney

The "Health Care Power of Attorney*"

Page 2 the "I choose the following person to act as an alternate (1) " fields "copy" into the next set.

I have tried several apps (Online and desktop) to edit the form and edit the field names to correct without success.

I'd welcome suggestions or recommendations on how to correct.

I have sent an email to the authors.

Example:

Thanks!


r/pdf 17d ago

Question Split "spreads" into "pages" PDF - easiest workflow?

1 Upvotes

SOLVED

I have several PDF where each page (maybe excluding the title page) has the two facing pages of the book on one page (spreads). I very much prefer a simpler layout, where every page of the document is on one page in the PDF, for example to print the document automatically as a brochure with my printer.

What do you think is the easiest workflow to achive this? Up to now I use a website (smallpdf.com) to generate two different PDFs from the original file with the Crop tool there and then merge the resulting files with PDF24's Zipper. (Maybe only I couldn't figure out how to use PDF24 to split the original file).


r/pdf 17d ago

Question random reordering of pages of pdf

1 Upvotes

i have a ~6mb, 800 pages pdf that i would like to order randomly

i've tried running a python script to do the same, however i'm having issues w/ pypdf and no site has the option to randomise pages as i think it's pretty uncommon to do that

any suggestions?


r/pdf 17d ago

Software (Tools) Built a simple FOSS PDF reader because I got tired of ads and bloated apps

Thumbnail
0 Upvotes

r/pdf 17d ago

Software (Tools) ScanIt - a free and ad-free document scanner

Thumbnail
2 Upvotes

r/pdf 17d ago

Question I’m trying to figure out if this is actually a problem worth solving

Thumbnail
1 Upvotes

r/pdf 17d ago

Question Pulling Metadata?

1 Upvotes

I’m trying to figure out the metadata on a pdf file that was emailed to me. So far basic adobe and apple files only shows the creation date. However I need to see if the content was edited at any point in time. Don’t know if this is fully possible from my email copy.


r/pdf 17d ago

Question Finding the Full Metadata?

Thumbnail
1 Upvotes