Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rana/pdf-doc
Create a writing document and save to PDF with Rust.
https://github.com/rana/pdf-doc
json-data pdf pdf-document pdf-generation rust rust-crate rust-lang rust-library
Last synced: about 2 months ago
JSON representation
Create a writing document and save to PDF with Rust.
- Host: GitHub
- URL: https://github.com/rana/pdf-doc
- Owner: rana
- License: mit
- Created: 2024-07-10T17:34:42.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-07-25T21:28:21.000Z (5 months ago)
- Last Synced: 2024-10-06T06:55:30.347Z (3 months ago)
- Topics: json-data, pdf, pdf-document, pdf-generation, rust, rust-crate, rust-lang, rust-library
- Language: Rust
- Homepage:
- Size: 22.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# pdf-doc
Create a writing document and save to PDF with Rust.
A minimal library.
Model a writing document with formatting options.
Slightly modeled after _Google Docs_ or _Microsoft Word_.
Save to `PDF` or `JSON`.
Reads `JSON` documents only.
## Prerequisites
Install `clang++` for the [skia-safe](https://crates.io/crates/skia-safe) crate dependency.
On Linux
```sh
sudo apt update
sudo apt install -y clang
clang++ --version
```