Skip to main content

Compress images in PPTX files

Project description

compress-pptx

PyPI version

All Contributors

Compress a PPTX or POTX file, converting all PNG/TIFF images to lossy JPEGs.

Contents:

What it does

When copy-pasting images to PowerPoint presentations, these sometimes get inserted as lossless versions, blowing up the size of the presentation.

This script takes all PNG or TIFF images part of the presentation which are larger than a given threshold (1 MiB by default), converts them to a lossy JPEG variant, and creates a new PPTX file.

:warning: This is not the same as compressing images with PowerPoint's own functionality. You may still need to do this to reduce the size of your presentation!

By default, PNGs containing transparency are automatically skipped to prevent graphics issues (since JPEG doesn't support transparency). If you want to force conversion of transparent images anyway, their transparent parts will be replaced with white (although you can choose another color with -t).

Requirements

  • Operating system: macOS or Linux
    • Note: Under Linux, you need LibreOffice installed to convert embedded EMF files
  • Python 3.9 or higher
  • ImageMagick (either version 6.x with convert/identify commands or version 7.x with magick command)
  • Optionally: ffmpeg for media files

Under Ubuntu, get ImageMagick via:

apt install imagemagick

Under macOS, install it with Homebrew:

brew install imagemagick

For ffmpeg, use the static builds from ffmpeg.org.

Installation

Simply run it via uv:

uvx compress-pptx

Or install via pipx. Or manually via pip:

pip3 install --user compress-pptx

Usage

Call compress-pptx and point it to a PPTX or POTX file. It'll compress the images and output another compressed file next to it.

For more options, see the -h output:

usage: compress-pptx [-h] [-o OUTPUT] [-s SIZE] [-q QUALITY] [-t TRANSPARENCY]
                     [--no-skip-transparent-images] [-v] [-f] [-m] [-j] [-l]
                     [--num-cpus NUM_CPUS] [--extract EXTRACT]
                     [--ffmpeg-crf FFMPEG_CRF]
                     [--ffmpeg-video-codec FFMPEG_VIDEO_CODEC]
                     [--ffmpeg-audio-codec FFMPEG_AUDIO_CODEC]
                     [--ffmpeg-extra-options FFMPEG_EXTRA_OPTIONS]
                     [--ffmpeg-path FFMPEG_PATH]
                     input

positional arguments:
  input

options:
  -h, --help            show this help message and exit
  -o OUTPUT, --output OUTPUT
                        Output file (default: None)
  -s SIZE, --size SIZE  Minimum size threshold in bytes. Also accepts the
                        suffixes k/M/G or KiB/MiB/GiB (default: 1MiB)
  -q QUALITY, --quality QUALITY
                        JPEG output quality (0-100) (default: 85)
  -t TRANSPARENCY, --transparency TRANSPARENCY
                        Replace transparency with color (default: white)
  --no-skip-transparent-images
                        Convert transparent images to JPEG (will replace
                        transparency with background color). By default,
                        transparent images are skipped to preserve transparency.
  -v, --verbose         Show additional info (default: False)
  -f, --force           Force overwriting output file (default: False)
  -m, --compress-media  Compress other media types such as audio and video
                        (requires ffmpeg) (default: False)
  -j, --recompress-jpeg
                        Recompress jpeg images (default: False)
  -l, --use-libreoffice
                        Use LibreOffice to compress EMF files (only way to
                        compress EMF files under Linux) (default: False)
  --num-cpus NUM_CPUS   Number of CPUs to use (default: all available CPUs)
  --extract EXTRACT     Extract all media from the presentation to the
                        specified directory (default: None)
  --ffmpeg-crf FFMPEG_CRF
                        FFmpeg CRF value for video encoding (e.g., 23 for
                        libx264) (default: None)
  --ffmpeg-video-codec FFMPEG_VIDEO_CODEC
                        FFmpeg video codec (e.g., libx264 for best PowerPoint
                        compatibility) (default: None)
  --ffmpeg-audio-codec FFMPEG_AUDIO_CODEC
                        FFmpeg audio codec (e.g., aac, libopus, libmp3lame)
                        (default: None)
  --ffmpeg-extra-options FFMPEG_EXTRA_OPTIONS
                        Extra FFmpeg options as a single string (e.g.,
                        '-preset slow -tune stillimage') (default: None)
  --ffmpeg-path FFMPEG_PATH
                        Path to ffmpeg executable (default: ffmpeg)

For example, to compress presentation.pptx and output to presentation-compressed.pptx with a quality of 75:

compress-pptx -o presentation-compressed.pptx -q 75 presentation.pptx

If you have ffmpeg installed, you can also compress audio and video files embedded in the presentation with the -m flag:

compress-pptx -m presentation.pptx

Transparent images are automatically skipped by default to preserve transparency. If you want to force conversion of transparent images to JPEG (replacing transparency with a background color), use the --no-skip-transparent-images flag:

compress-pptx --no-skip-transparent-images presentation.pptx

Extracting media

To extract all media files from a presentation, use the --extract option with a directory path:

compress-pptx --extract ./media presentation.pptx

This will create the media directory (if it doesn't exist) and extract all images, audio, and video files from the presentation into it.

FFmpeg encoding options

When using -m to compress media files, you can customize the FFmpeg encoding settings:

compress-pptx -m --ffmpeg-video-codec libx265 --ffmpeg-crf 34 presentation.pptx

Note that the default is libx264 and CRF 23.

You can pass additional FFmpeg options using --ffmpeg-extra-options:

compress-pptx -m --ffmpeg-video-codec libx264 --ffmpeg-extra-options '-preset slow -tune stillimage' presentation.pptx

To see available options for a specific encoder, run:

ffmpeg -h encoder=libx264

Contributors

caydey
caydey

💻

License

MIT License

Copyright (c) 2021-2025 Werner Robitza

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

compress_pptx-1.3.0.tar.gz (10.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

compress_pptx-1.3.0-py3-none-any.whl (14.0 kB view details)

Uploaded Python 3

File details

Details for the file compress_pptx-1.3.0.tar.gz.

File metadata

  • Download URL: compress_pptx-1.3.0.tar.gz
  • Upload date:
  • Size: 10.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.5

File hashes

Hashes for compress_pptx-1.3.0.tar.gz
Algorithm Hash digest
SHA256 ee262b00cfaba4882de9deb65f76ab3440f168ff3f768305ac724a3e90818f7d
MD5 76519104c2452f24d78e12af2bd343c2
BLAKE2b-256 74794dd8950773f417500b247a98a899fa2d2f2bdbac7976bae120d037886f93

See more details on using hashes here.

File details

Details for the file compress_pptx-1.3.0-py3-none-any.whl.

File metadata

  • Download URL: compress_pptx-1.3.0-py3-none-any.whl
  • Upload date:
  • Size: 14.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.5

File hashes

Hashes for compress_pptx-1.3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 aeed700f30ff25b069da5bf5ab5bc34a05dec3cad8952d3d1761a70d74706ddc
MD5 abedb86aa3ffd8a5a3bd0c7d784d6764
BLAKE2b-256 91358caf1f3ec91fffc53c784572f234a976b69b03ce9e08d62cec5549ce696d

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page