AudionAudion

Office Image Optimizer

github.com/Tensionix/office-image-optimizer ↗
Builds dieses Projekts: Versionen, Dateien und Prüfsummen.
Office Image Optimizer

Bearbeitet die Rasterbilder in DOCX und PPTX: Die Bilder werden komprimiert, verschieben sich aber nicht und wirken sich nicht auf das Layout aus. Aus einer Präsentation mit hundert Megabyte werden zehn.

1.7.2
4 Downloads über GitHub

Audion Office Image Optimizer

Русский · User Guide

Contents

Processes raster images inside Word documents and PowerPoint presentations, without taking the document apart.

Why It Exists

A document with photographs weighs a hundred megabytes because every image inside it is a phone picture at full resolution. It opens slowly, will not go by email, and behaves unpredictably in print.

The usual approach is to extract the images, process them, and put them back. That approach loses everything: position, text wrapping, captions, anchoring to the paragraph.

This program works on the images in place: the document stays the same document, and only what is inside the pictures changes.

Principles

The layout is untouched. Position, size on the page, wrapping, anchoring — all stay as they were. Pixels change, markup does not.

The colour profile is chosen explicitly. As in the other Audion programs: one thing for screen, another for print, and a person decides which.

The source is not modified. The result is written separately.

Next


Technical Reference

Layout

system_core\app\   the code
runtime\           embedded Python
config\            defaults and colour profiles

Workbench Naming

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

Versionen
1.7.2
Audion_Office_Image_Optimizer_v1.7.2_Full.zip104 MB4. September 2026sha256nur hier
Audion_Office_Image_Optimizer_v1.7.2.zip3.8 MB4. September 2026sha256nur hier
README_EN.dark.pdf66.0 KB4. September 2026
README_EN.light-sand.pdf66.0 KB4. September 2026
README_EN.md1.6 KB4. September 2026
README_RU.dark.pdf82.0 KB4. September 2026
README_RU.light-sand.pdf82.0 KB4. September 2026
README_RU.md2.7 KB4. September 2026
USER_GUIDE_EN.dark.pdf69.6 KB4. September 2026
USER_GUIDE_EN.light-sand.pdf69.7 KB4. September 2026
USER_GUIDE_EN.md4.6 KB4. September 2026
USER_GUIDE_RU.dark.pdf79.1 KB4. September 2026
USER_GUIDE_RU.light-sand.pdf79.2 KB4. September 2026
USER_GUIDE_RU.md6.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_Office_Image_Optimizer_v1.7.2_Full.zip"
Invoke-WebRequest "https://audion.dev/get/office-image-optimizer/1.7.2/Audion_Office_Image_Optimizer_v1.7.2_Full.zip" -OutFile $name
Invoke-WebRequest "https://audion.dev/get/office-image-optimizer/1.7.2/Audion_Office_Image_Optimizer_v1.7.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 ".\office-image-optimizer"
Alle Downloads · Startseite