AudionAudion

Office Image Optimizer

github.com/Tensionix/office-image-optimizer ↗
Builds of this project: versions, files and checksums.
Office Image Optimizer

Processes the raster images inside DOCX and PPTX: the pictures are compressed, but they do not move and they do not affect the layout. A hundred-megabyte presentation turns into ten.

1.7.2
4 downloads from 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.

Versions
1.7.2
Audion_Office_Image_Optimizer_v1.7.2_Full.zip104 MB4 September 2026sha256here only
Audion_Office_Image_Optimizer_v1.7.2.zip3.8 MB4 September 2026sha256here only
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

The program is portable: the unpacked folder is the installed program. Nothing is written to the registry; to uninstall, delete the folder.

$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 "checksum mismatch: the download is corrupt" }

Expand-Archive $name -DestinationPath ".\office-image-optimizer"
All downloads · Home