Skip to content

Commit 20e595e

Browse files
committed
docs: update README with font management details
1 parent e430fa5 commit 20e595e

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ A high-level PDF manipulation library built on [lopdf](https://github.com/j-f-li
1313
- **PDF Embedding**: Embed other PDF documents with various layout strategies
1414
- **Block System**: Reusable PDF content components with transformations and efficient rendering
1515
- **Image Embedding**: Support for PNG and JPEG images
16+
- **Font Management**: Easy embedding and management of fonts
1617
- **Type Safety**: Strongly typed interfaces with compile-time guarantees
1718

1819
# Showcase
@@ -28,7 +29,7 @@ use hipdf::ocg::{OCGManager, Layer, LayerContentBuilder, LayerOperations as Ops}
2829
use hipdf::lopdf::{Document, Object};
2930

3031
// Create a new PDF with layers
31-
let mut doc = Document::with_version("1.5");
32+
let mut doc = Document::with_version("1.7");
3233
let mut ocg_manager = OCGManager::with_config(Default::default());
3334

3435
// Add layers
@@ -118,6 +119,7 @@ let operations = manager.render_instances(&instances);
118119
- [`embed_pdf`] - PDF embedding and composition support
119120
- [`blocks`] - Reusable PDF content components with transformations
120121
- [`images`] - Image embedding and manipulation
122+
- [`fonts`] - Font management and embedding
121123

122124
## Usage Examples
123125

0 commit comments

Comments
 (0)