Crates.io | to-pdf |
lib.rs | to-pdf |
version | 0.1.0 |
source | src |
created_at | 2024-01-26 00:24:59.770923 |
updated_at | 2024-01-26 00:24:59.770923 |
description | Export & Preview as PDF |
homepage | |
repository | https://github.com/bob22z/to-pdf |
max_upload_size | |
id | 1114868 |
size | 1,697 |
Add the following to Cargo.toml:
[dependencies]
to-pdf = { git = "https://github.com/bob22z/to-pdf" }
use to_pdf::ToPdf;
// Initialize with custom fonts
let to_pdf = ToPdf::new(FONT_PATH)?;
// Export to Pdf with typst text
let pdf_content = to_pdf.to_pdf(TYPST_TEXT)?;
// Preview as Svg with typst text
let svg_content_list = to_pdf.to_svg(TYPST_TEXT)?;
MIT