PPSM to XBM Converter

Export PPSM slides as XBM monochrome bitmaps for free

Drop files here. 1 GB maximum file size or Sign Up
to
Facebook Amazon Microsoft Tesla Nestle Walmart L'Oreal

X11-Native Bitmap

XBM is the standard monochrome bitmap for X Window System applications. PPSM slides convert into C-source bitmaps that X11 programs can use directly for icons and cursors.

Source Code Format

XBM files are valid C header code — embed them directly into X11 application source. Each converted PPSM slide becomes a compilable bitmap definition ready for development.

Cloud-Powered Rendering

Slide rendering and monochrome conversion happen on Convertio servers. No local tools needed — upload the PPSM, download XBM output from any internet-connected device.

How to convert PPSM to XBM

1

Select files from Computer, Google Drive, Dropbox, URL or by dragging it on the page.

2

Choose xbm or any other format you need as a result (more than 200 formats supported)

3

Let the file convert and you can download your xbm file right afterwards

About formats

PPSM (PowerPoint Slideshow with Macros) is a macro-enabled slideshow format in Microsoft PowerPoint, introduced with Office 2007 as part of the Office Open XML family. PPSM combines the auto-play slideshow behavior of PPSX with the VBA macro capabilities of PPTM — opening a PPSM file launches it directly into full-screen presentation mode while allowing embedded macro code to execute during the slideshow. The format is structurally a ZIP archive containing the same XML slide parts as other OOXML presentation formats, plus a vbaProject.bin stream housing the VBA project. This combination is particularly valuable for interactive presentations: macro-driven slideshows can respond to user input, navigate non-linearly between sections, query external databases, update content in real time, and log audience responses during training or assessment sessions. One advantage is interactive presentation capability — PPSM enables quiz-style presentations where clicking answer buttons triggers immediate scoring feedback, branching paths, or data recording, all invisible to the audience. The macro-enabled slideshow format also supports self-contained automation: a PPSM file can run initialization routines on launch, configure the display environment, and clean up resources on exit without any manual intervention. As with all macro-enabled Office Open XML formats, the distinct .ppsm extension helps administrators enforce security policies that differentiate between trusted macro content and standard presentations. PPSM is supported exclusively in Microsoft PowerPoint desktop editions.
Developer: Microsoft
Initial release: January 30, 2007
XBM (X BitMap) is a monochrome (1-bit) image format defined as part of the X Window System, originating at MIT around 1987. XBM files are unique among image formats in being valid C source code: each file defines the image as a static array of unsigned char values containing the packed pixel data, preceded by #define statements specifying the image width, height, and optional hot-spot coordinates (for cursor images). The pixel data is stored in hexadecimal byte values within curly braces, with each bit representing one pixel (1 = foreground, 0 = background) and bits ordered LSB-first within each byte. This design was intentional — XBM images could be #included directly into X Window application source code and compiled into the binary, eliminating the need for external file loading and runtime format parsing. The format was used throughout the X11 ecosystem for cursor shapes, window icons, toolbar buttons, and other small UI elements. One advantage is the source-code nature of the format: XBM files can be edited with a text editor, diff'd and merged in version control, generated by shell scripts, and compiled directly into C programs without any image loading library — a level of toolchain integration that no binary image format can match. The format's role as part of the X Window standard ensures it is understood by every X11-aware toolkit and application. While limited to monochrome and no compression, XBM's simplicity makes it an excellent teaching format for understanding bitmap representations. XBM files are supported by all X11 applications, ImageMagick, GIMP, web browsers (as a legacy web format), and programming environments.
Developer: MIT X Consortium
Initial release: 1987

Frequently Asked Questions

Why convert PPSM to XBM?

XBM is the standard bitmap format for X Window System cursors, icons, and UI elements. Converting PPSM slides to XBM lets you create X11 graphics directly from presentation content.

What opens XBM files?

Any X11 desktop environment displays XBM natively. GIMP, ImageMagick, Firefox, and Chrome can all render XBM. Since XBM is plain C source code, any text editor can view the raw data.

Is XBM a text-based format?

Yes — XBM files are C language header files containing an array of pixel values. This makes them human-readable and directly compilable into X11 applications.

Do VBA macros survive conversion?

No. XBM contains only a C array of monochrome pixel data. All VBA macros, animations, and embedded code from the PPSM are fully discarded.

Is PPSM to XBM free?

Yes — Convertio provides this conversion at no cost. Premium plans offer increased volume and file size limits for users with heavier requirements.

Does XBM support color?

No — XBM is strictly monochrome (1-bit black and white). For color X Windows bitmaps, the XPM format is used instead. Slide content is dithered to two tones during conversion.