svgg

Getting Started

Prerequisites

Installation

Install from PyPI

pip install svgg

Install from source

git clone https://github.com/veridock/svgg.git
cd svgg
pip install -e .

Verify Installation

svgg --version

Basic Usage

Command Line Interface

Embed a PDF into an SVG

svgg embed document.pdf --into template.svg --output enhanced.svg

Create an SVG bundle from multiple files

svgg create --files "*.pdf,*.png,*.json" --output bundle.svg

Extract embedded files from an SVG

svgg extract document.svg --output-dir ./extracted/

Show information about embedded files

svgg info document.svg

Next Steps