AudionAudion

Doc to PDF

github.com/Tensionix/doc-to-pdf ↗
Builds dieses Projekts: Versionen, Dateien und Prüfsummen.
Doc to PDF

Wandelt Dokumente stapelweise über Microsoft Office selbst um, nicht über eine fremde Engine: Layout, Schriften und Beschriftungen bleiben, wo sie waren. Dazu die übliche Nachbearbeitung der entstandenen PDF-Dateien.

1.6.2
3 Downloads über GitHub

Audion Doc to PDF

Русский · User Guide

Contents

Batch conversion of Word, Excel, and PowerPoint into PDF — through the native export of Office itself. Plus routine processing of existing PDFs.

Why It Exists

There are a dozen ways to get a PDF out of an Office document, and almost all of them spoil the result: third-party engines lose fonts, break numbering, move tables elsewhere. The only one that reliably produces what you see on screen is Office itself.

But Office cannot do it in bulk. Opening two hundred files and pressing "Save as PDF" two hundred times is not work for a human.

The program takes that over: the export stays native, and the batching is added around it.

Principles

The folder structure is preserved. The walk is recursive and the output mirrors the source tree. Two hundred files from twenty folders do not collapse into one.

Existing PDFs are processed too. Not everything comes from Office: some material is already PDF and needs the same treatment — cropping to format, assembly, splitting.

Presentations are cropped afterwards. The export produces the page as it is, and fitting to 16:9 or an A-series size is a separate step — so the original export stays unspoilt.

What It Can Do

Recursive folder conversion preserving structure, single-file conversion, cropping presentations to 16:9 or A-series, routine processing of existing PDFs.

Next


Technical Reference

Requirement

An installed Microsoft Office: it performs the export, the program only drives the process.

Workbench Naming

One shared vocabulary across all Audion projects: Source, Add file…, Target, Reset, Delete, List.

Versionen
1.6.2
Audion_Doc_to_PDF_v1.6.2_Full.zip182 MB4. September 2026sha256nur hier
Audion_Doc_to_PDF_v1.6.2.zip3.6 MB4. September 2026sha256nur hier
README_EN.dark.pdf56.7 KB4. September 2026
README_EN.light-sand.pdf56.9 KB4. September 2026
README_EN.md2.0 KB4. September 2026
README_RU.dark.pdf64.4 KB4. September 2026
README_RU.light-sand.pdf64.5 KB4. September 2026
README_RU.md3.3 KB4. September 2026
USER_GUIDE_EN.dark.pdf106 KB4. September 2026
USER_GUIDE_EN.light-sand.pdf106 KB4. September 2026
USER_GUIDE_EN.md3.9 KB4. September 2026
USER_GUIDE_RU.dark.pdf124 KB4. September 2026
USER_GUIDE_RU.light-sand.pdf124 KB4. September 2026
USER_GUIDE_RU.md5.6 KB4. September 2026
Installation

Das Programm ist portabel: der entpackte Ordner ist das installierte Programm. In die Registry wird nichts geschrieben; zum Entfernen den Ordner löschen.

$name = "Audion_Doc_to_PDF_v1.6.2_Full.zip"
Invoke-WebRequest "https://audion.dev/get/doc-to-pdf/1.6.2/Audion_Doc_to_PDF_v1.6.2_Full.zip" -OutFile $name
Invoke-WebRequest "https://audion.dev/get/doc-to-pdf/1.6.2/Audion_Doc_to_PDF_v1.6.2_Full.zip.sha256" -OutFile "$name.sha256"

$want = (Get-Content "$name.sha256").Split(" ")[0]
$have = (Get-FileHash $name -Algorithm SHA256).Hash.ToLower()
if ($want -ne $have) { throw "Prüfsumme stimmt nicht: der Download ist beschädigt" }

Expand-Archive $name -DestinationPath ".\doc-to-pdf"
Alle Downloads · Startseite