Metadata-Version: 2.4
Name: SVG2DrawIOLib
Version: 1.2.2
Summary: Generate DrawIO shape libraries from SVGs
Project-URL: Homepage, https://github.com/jamesbconner/SVG2DrawIOLib
Project-URL: Documentation, https://github.com/jamesbconner/SVG2DrawIOLib#readme
Project-URL: Repository, https://github.com/jamesbconner/SVG2DrawIOLib
Project-URL: Issues, https://github.com/jamesbconner/SVG2DrawIOLib/issues
Project-URL: Changelog, https://github.com/jamesbconner/SVG2DrawIOLib/blob/main/CHANGELOG.md
Author-email: James Conner <jamesbconner@gmail.com>
License-Expression: MIT
License-File: LICENSE.txt
Keywords: architecture,diagrams,draw.io,drawio,icons,shapes,svg,tech stack,technical stack
Classifier: Development Status :: 4 - Beta
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Classifier: Programming Language :: Python :: Implementation :: CPython
Requires-Python: >=3.13
Requires-Dist: click>=8.1.0
Requires-Dist: rich-click>=1.8.0
Requires-Dist: rich>=13.0.0
Requires-Dist: svgelements>=1.9.0
Provides-Extra: dev
Requires-Dist: bandit>=1.7.0; extra == 'dev'
Requires-Dist: mypy>=1.18.0; extra == 'dev'
Requires-Dist: pip>=26.0.1; extra == 'dev'
Requires-Dist: pre-commit>=4.4.0; extra == 'dev'
Requires-Dist: pytest-cov>=6.0.0; extra == 'dev'
Requires-Dist: pytest>=8.4.2; extra == 'dev'
Requires-Dist: ruff>=0.14.4; extra == 'dev'
Requires-Dist: twine>=5.0.0; extra == 'dev'
Requires-Dist: uv>=0.10.0; extra == 'dev'
Description-Content-Type: text/markdown

# SVG2DrawIOLib

[![PyPI - Version](https://img.shields.io/pypi/v/SVG2DrawIOLib.svg)](https://pypi.org/project/SVG2DrawIOLib)
[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/SVG2DrawIOLib.svg)](https://pypi.org/project/SVG2DrawIOLib)
[![PyPI - Downloads](https://img.shields.io/pypi/dm/SVG2DrawIOLib)](https://pypi.org/project/SVG2DrawIOLib)
[![CI](https://github.com/jamesbconner/SVG2DrawIOLib/workflows/CI/badge.svg)](https://github.com/jamesbconner/SVG2DrawIOLib/actions)
[![Publish to PyPI](https://github.com/jamesbconner/SVG2DrawIOLib/actions/workflows/publish.yml/badge.svg)](https://github.com/jamesbconner/SVG2DrawIOLib/actions/workflows/publish.yml)
[![codecov](https://codecov.io/gh/jamesbconner/SVG2DrawIOLib/branch/main/graph/badge.svg)](https://codecov.io/gh/jamesbconner/SVG2DrawIOLib)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
[![Code style: ruff](https://img.shields.io/badge/code%20style-ruff-000000.svg)](https://github.com/astral-sh/ruff)
[![Type checked: mypy](https://img.shields.io/badge/type%20checked-mypy-blue.svg)](https://mypy-lang.org/)
[![Security: bandit](https://img.shields.io/badge/security-bandit-yellow.svg)](https://github.com/PyCQA/bandit)

Convert SVG files into DrawIO/diagrams.net shape libraries with support for colorable icons.

## Features

- ✨ **Batch Conversion**: Process individual files, entire directories, or recursive folder structures
- 🎯 **Pixel-Perfect Rendering**: Browser-accurate bounding box calculation (via `svgelements`) eliminates padding and ensures icons render exactly as designed
- 🎨 **Color Customization**: Inject CSS classes to enable color editing directly in DrawIO's interface
- 📏 **Flexible Sizing**: Proportional scaling with aspect ratio preservation, or fixed dimensions
- 📚 **Library Management**: Create new libraries, add/remove icons, and list contents
- 🚀 **Modern CLI**: Beautiful, colorful output with rich-click
- 🔧 **Modern Python Stack**: Built with ruff, mypy, bandit, pytest, and pre-commit hooks

---

## Quick Start

### Installation

```bash
pip install SVG2DrawIOLib
```

or

```bash
uv pip install SVG2DrawIOLib
```

### Basic Usage

```bash
# Convert individual SVG files to DrawIO library
SVG2DrawIOLib create icon1.svg icon2.svg -o my-library.xml

# Convert all SVGs in a directory
SVG2DrawIOLib create icons/ -o my-library.xml

# Convert all SVGs in directory and subdirectories
SVG2DrawIOLib create icons/ -o my-library.xml --recursive

# Enable color editing in DrawIO
SVG2DrawIOLib create icons/ --css -o colorable-icons.xml

# Custom dimensions with proportional scaling
SVG2DrawIOLib create icons/ --max-size 64 -o large-icons.xml -R
```

## Documentation

- [Quick Start Guide](QUICKSTART.md) - Get started quickly for users and developers
- [Architecture](ARCHITECTURE.md) - Technical details and implementation
- [Contributing Guide](CONTRIBUTING.md) - Development workflow
- [Changelog](CHANGELOG.md) - Version history

## Commands

### Library Management Commands

#### Create a Library

Create a new DrawIO library from SVG files:

```bash
# Basic usage
SVG2DrawIOLib create icon1.svg icon2.svg -o my-library.xml

# From directory
SVG2DrawIOLib create icons/ -o my-library.xml

# Recursive directory scan
SVG2DrawIOLib create icons/ -o my-library.xml --recursive

# Split by folder (creates separate libraries per subdirectory)
SVG2DrawIOLib create icons/ -o FontAwesome.xml -R --split-by-folder
# Creates: FontAwesome-Regular.xml, FontAwesome-Solid.xml, etc.
```

#### Add Icons to Library

Add new icons to an existing library:

```bash
# Add single icon
SVG2DrawIOLib add my-library.xml new-icon.svg

# Add multiple icons
SVG2DrawIOLib add my-library.xml icon1.svg icon2.svg

# Replace duplicates
SVG2DrawIOLib add my-library.xml icon.svg --replace
```

#### Remove Icons

Remove icons from a library by name:

```bash
SVG2DrawIOLib remove my-library.xml icon-name1 icon-name2
```

#### Extract Icons

Extract icons from a library back to individual SVG files:

```bash
# Extract all icons
SVG2DrawIOLib extract my-library.xml -o output-dir/

# Extract specific icons
SVG2DrawIOLib extract my-library.xml -o output-dir/ icon1 icon2

# Overwrite existing files
SVG2DrawIOLib extract my-library.xml -o output-dir/ --overwrite
```

#### Rename Icons

Rename an icon within a library:

```bash
# Rename icon
SVG2DrawIOLib rename my-library.xml -o old-name -n new-name

# Overwrite if new name exists
SVG2DrawIOLib rename my-library.xml -o old-name -n new-name --overwrite
```

### Library Inspection Commands

#### List Icons

List all icons in a library:

```bash
SVG2DrawIOLib list my-library.xml
```

#### Inspect Icons

Display detailed information about icons:

```bash
# Inspect all icons
SVG2DrawIOLib inspect my-library.xml

# Inspect specific icons
SVG2DrawIOLib inspect my-library.xml icon1 icon2

# Show SVG content
SVG2DrawIOLib inspect my-library.xml --show-svg

# JSON output
SVG2DrawIOLib inspect my-library.xml --json
```

#### Validate Library

Validate library file integrity:

```bash
SVG2DrawIOLib validate my-library.xml
```

### SVG Processing Commands

#### Split Compound Paths

Split SVG paths with multiple shapes into separate paths for per-path color control:

```bash
# Split compound paths in an SVG
SVG2DrawIOLib split-paths icon.svg -o icon-split.svg

# Then create library with CSS enabled
SVG2DrawIOLib create icon-split.svg --css -o colorable-icon.xml
```

This command:
- Detects paths with multiple M/m (moveto) commands
- Splits them into separate path elements
- Automatically preserves "donut holes" (nested paths)
- Adds CSS classes for individual color control

Useful for icons that have a single compound path but multiple distinct shapes.

## Advanced Features

### Color Editing

Enable color customization in DrawIO by injecting CSS classes:

```bash
# Basic color editing (fill colors only)
SVG2DrawIOLib create icons/ --css -o colorable-icons.xml

# Stroke colors only
SVG2DrawIOLib create icons/ --css --css-mode stroke -o colorable-icons.xml

# Both fill and stroke colors
SVG2DrawIOLib create icons/ --css --css-mode both -o colorable-icons.xml

# Custom default colors
SVG2DrawIOLib create icons/ --css --css-color "#FF0000" --css-stroke-color "#0000FF" -o colorable-icons.xml

# Disable currentColor preservation
SVG2DrawIOLib create icons/ --css --no-preserve-current-color -o colorable-icons.xml
```

**CSS Modes:**
- `fill` (default): Generate CSS rules for fill colors only
- `stroke`: Generate CSS rules for stroke colors only
- `both`: Generate CSS rules for both fill and stroke colors

**Features:**
- Parses both `style="fill:#fff"` attributes and direct `fill="#fff"` attributes
- Properly handles `fill="none"` and `stroke="none"` (doesn't force colors)
- Preserves `currentColor` values by default for theme-aware icons
- Supports custom default colors for fill and stroke

This allows users to change icon colors directly in DrawIO's interface. For icons with compound paths (single path containing multiple shapes), use `split-paths` first to enable per-shape color control.

### Proportional Scaling

Scale icons proportionally while maintaining aspect ratio:

```bash
# Scale so longest side is 64px
SVG2DrawIOLib create icons/ --max-size 64 -o large-icons.xml
```

### Fixed Dimensions

Set exact dimensions for all icons:

```bash
SVG2DrawIOLib create icons/ --width 50 --height 50 -o square-icons.xml
```

### Custom Configuration

```bash
# Custom XML namespace
SVG2DrawIOLib create icons/ --namespace "http://custom.ns" -o library.xml

# Custom CSS colors
SVG2DrawIOLib create icons/ --css --css-color "#FF0000" --css-stroke-color "#0000FF" -o library.xml
```

### Target Specific SVG Elements for Color Editing

The `--tag` option (short: `-t`) controls which SVG element type receives CSS classes when using `--css`. This is useful when your icons use different element types for their shapes.

**Default behavior:** Targets `<path>` elements (works for most icon libraries)

```bash
# Default: Add CSS classes to <path> elements
SVG2DrawIOLib create icons/ --css -o library.xml

# Target <circle> elements instead
SVG2DrawIOLib create icons/ --css --tag circle -o library.xml

# Target <rect> elements
SVG2DrawIOLib create icons/ --css --tag rect -o library.xml

# Target <ellipse> elements
SVG2DrawIOLib create icons/ --css --tag ellipse -o library.xml
```

**When to use:**
- Most icon libraries (Font Awesome, Material Icons, etc.) convert all shapes to `<path>` elements, so the default works fine
- If your SVGs primarily use `<circle>`, `<rect>`, or other element types, specify that tag
- Only elements of the specified type will get CSS classes for color editing
- You can only target one element type per command

**Example:** If your icon uses circles for dots and paths for lines, and you want to make the circles colorable:
```bash
SVG2DrawIOLib create icon.svg --css --tag circle -o library.xml
```

**Note:** The `--tag` option only affects CSS class injection. It has no effect without the `--css` flag.

### Split by Folder

Organize icons by subdirectory structure:

```bash
# Create separate libraries for each subdirectory
SVG2DrawIOLib create icons/ -o FontAwesome.xml -R --split-by-folder

# Example directory structure:
# icons/
#   Regular/
#     icon1.svg
#     icon2.svg
#   Solid/
#     icon3.svg
#   Brands/
#     icon4.svg
#
# Creates:
#   FontAwesome-Regular.xml (2 icons)
#   FontAwesome-Solid.xml (1 icon)
#   FontAwesome-Brands.xml (1 icon)
```

This is useful for icon sets that are already organized by category in the filesystem.

## How It Works

SVG2DrawIOLib converts SVG files into DrawIO's custom library format:

1. **Parses SVG files** and extracts dimensions
2. **Optionally injects CSS classes** for color editing support
3. **Encodes SVG as data URI** with base64 encoding
4. **Wraps in mxGraphModel XML** structure
5. **Compresses using zlib** deflate algorithm
6. **Generates library XML** compatible with DrawIO

For technical details about the conversion process, see [ARCHITECTURE.md](ARCHITECTURE.md).

## Python API

Use SVG2DrawIOLib programmatically:

```python
from pathlib import Path
from SVG2DrawIOLib import SVGProcessor, LibraryManager, SVGProcessingOptions

# Configure processing options
options = SVGProcessingOptions(add_css=True, css_color="#000000")

# Process SVG file
processor = SVGProcessor(options)
icon = processor.process_svg_file(Path("icon.svg"), max_dimension=64)

# Create library
manager = LibraryManager()
metadata = manager.create_library([icon], Path("library.xml"))

print(f"Created library with {metadata.icon_count} icons")
```

For complete API documentation, see [ARCHITECTURE.md](ARCHITECTURE.md).

## License

`SVG2DrawIOLib` is distributed under the terms of the [MIT](LICENSE.txt) license.
