Easiest way to fix broken/corrupt/weird PDFs?

Distiller does not appear to be part of Acrobat Suite for the PC anymore in 2025. I don't see it mentioned on any Adobe forums. I only have it on the Mac. I used to use it all the time, sadness.
I don't think this is correct. I have the latest 2025 version:
1744126866418.png
 
Distiller does not appear to be part of Acrobat Suite for the PC anymore in 2025. I don't see it mentioned on any Adobe forums. I only have it on the Mac. I used to use it all the time, sadness.
The process is sometimes called "refrying" a PDF.

I am the lead developer of a commercial solution that can do that, plus a lot more. If you would like to give it a try (30 day free) and are a commerical user feel free to reach out via PM.
Our solution has 2 separate (independent) processing engines, that can take a PDF that is in the "gray zone" of the ISO32000 specification and write a new PDF that conforms to ISO 32000.
There reason there are 2 processing engines is because there are countless PDF writers that do strange things. In our experience, there is no single solution or software that works -all- the time on -all- edge cases on -all- files. It is old school desktop installed software, only available for Windows systems.
Best Regards.
 
Distiller does not appear to be part of Acrobat Suite for the PC anymore in 2025. I don't see it mentioned on any Adobe forums. I only have it on the Mac. I used to use it all the time, sadness.

This is absolutely untrue.

Acrobat Distiller is an integral part of Adobe Acrobat, both on Windows and MacOS.

That having been said, “refrying a PDF file” (creating PostScript from PDF and then distilling that to PDF) is not a recommended solution to “fixing” a PDF file. Such “solutions” totally lose live transparency, ICC color management, etc. given that even PostScript Language Level 3 is effectively PDF 1.2, at best!
 
This is absolutely untrue.

Acrobat Distiller is an integral part of Adobe Acrobat, both on Windows and MacOS.

That having been said, “refrying a PDF file” (creating PostScript from PDF and then distilling that to PDF) is not a recommended solution to “fixing” a PDF file. Such “solutions” totally lose live transparency, ICC color management, etc. given that even PostScript Language Level 3 is effectively PDF 1.2, at best!

Respectfully, our solution does not go the "Postscript Refrying" route. It works %100 with the native PDF Object stream and does vector draw operations. It does not lose vector transparency. It does not rasterize either. ICC color management, Spot colors etc is preserved as much as possible, however not guaranteed. It needs to be tested with your files.

If print controllers from EFI/Fiery, Canon, HP, Xerox etc have problems digesting a PDF (or taking forever) the solution I suggested is proven by our customer base to be effective.
Certainly it would need to be tested with your PDF files and controllers. You may have special requirements which may not be preserved during "refry". So there is no guarantee.
 
late to the party... I've had good luck with fixing "broken" or improperly created PDFs by running them through Ghostscript (a free opensource utility). As long at the basic structure is there and you can at the very least open the file.
Code:
gswin64 -dBATCH -dNOPAUS -o "outputfilename.pdf" -sDEVICE=pdfwrite -dPDFSETTINGS=/prepress "inputfilename.pdf"

Sometimes I'm surprised at what I can do with GS (font issues, extract embedded graphics, etc). Also, combine it with an automation tool like Automation Workshop and you can build a standalone/hotfolder setup that will take in and spit out files automagically.
 
   
Back
Top