Metadata-Version: 2.4
Name: kymostudio-core
Version: 0.3.3
Classifier: Programming Language :: Rust
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Multimedia :: Graphics
Summary: Type it. See it appear. Watch it animate.
Keywords: svg,png,rasterizer,diagram,resvg
Home-Page: https://github.com/kymostudio/kymostudio
Author-email: rain1024 <anhv.ict91@gmail.com>
License-Expression: Apache-2.0
Requires-Python: >=3.10
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
Project-URL: Homepage, https://github.com/kymostudio/kymostudio
Project-URL: Repository, https://github.com/kymostudio/kymostudio

# kymostudio-core (Rust)

Pure-Rust SVG → PNG rasterizer core for **kymostudio**, built on
[`resvg`](https://github.com/linebender/resvg). No browser, no headless Chrome,
no C/Cairo/Skia system dependencies.

One core crate, compiled to **four targets** from a single source via feature
flags — so the Rust CLI, the Python package, and the JS/browser playground all
share the exact same resvg engine (`resvg` is **CSS-class-aware**, the reason the
project avoids cairosvg):

| Target | Feature | Build tool | Consumer |
|--------|---------|-----------|----------|
| Native lib + `kymo` CLI | `system-fonts` (default) | `cargo` | standalone CLI |
| Python extension (abi3) | `python` | `maturin` → wheel | `packages/python` |
| wasm (browser + Node) | `wasm` | `wasm-pack` → pkg | `packages/js`, website playground |

`svg_to_png(svg: &[u8], scale: f32) -> Result<Vec<u8>, RenderError>` is the one
core function; each binding (`src/python.rs`, `src/wasm.rs`) is a thin façade.

## CLI — `kymo`

```bash
kymo -i in.svg out.png          # rasterize at intrinsic size
kymo -i diagram.svg             # output defaults to diagram.png
kymo -i diagram.svg -s 2 hi.png # 2× resolution
```

| Flag | Meaning |
|------|---------|
| `-i, --input <FILE>`  | Input SVG (required) |
| `-o, --output <FILE>` | Output PNG (or pass it positionally) |
| `-s, --scale <N>`     | Scale factor, `1.0` = intrinsic size (default `1`) |
| `-h, --help` / `-V, --version` | Help / version |

## Build each target

```bash
# Native (CLI + lib + tests)
cargo test
cargo build --release --bin kymo          # -> target/release/kymo

# Python wheel (abi3, one wheel for CPython ≥ 3.10)
maturin build --release --out dist        # -> dist/kymostudio_core-*-abi3-*.whl
#   import _kymostudio_core; _kymostudio_core.svg_to_png(svg_bytes, scale)

# wasm (browser + Node) — system-fonts OFF (no fs/mmap on wasm)
wasm-pack build --target web --out-dir pkg --out-name kymostudio_core \
  -- --no-default-features --features wasm
#   import { svgToPng } from './pkg/kymostudio_core.js'
```

CI builds and smoke-tests all of the above across Linux/macOS/Windows —
see `.github/workflows/rust.yml`.

## Library use (Rust)

```rust
let svg = std::fs::read("in.svg")?;
let png: Vec<u8> = kymostudio_core::svg_to_png(&svg, 1.0)?;
std::fs::write("out.png", png)?;
```

The version is kept in **lockstep** with the rest of the monorepo
(`Cargo.toml` → `version`).

