ppt-rs 0.2.14

Create, read, and update PowerPoint 2007+ (.pptx) files with rich formatting, bullet styles, themes, and templates.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! OPC (Open Packaging Convention) package handling

pub mod package;
pub mod compress;

pub use package::Package;
pub use compress::{
    compress_pptx, compress_pptx_in_memory, analyze_pptx,
    CompressionOptions, CompressionLevel, CompressionResult,
    PptxAnalysis
};