procreate

Crates.ioprocreate
lib.rsprocreate
version0.1.0
sourcesrc
created_at2024-05-12 03:28:58.915527
updated_at2024-05-12 03:28:58.915527
descriptionA library for reading Procreate files.
homepage
repositoryhttps://github.com/m1guelpf/procreate-rs
max_upload_size
id1237208
size7,706
Miguel Piedrafita (m1guelpf)

documentation

README

procreate-rs

A simple library for parsing Procreate files in Rust.

github crates.io docs.rs

This crate provides some simple utilities from reading metadata from Procreate files, and extracting a thumbnail or timelapse video from them.

cargo add procreate

Usage

let file = procreate::File::open("example.procreate").unwrap();

let metadata = file.metadata().unwrap();
let thumbnail = file.thumbnail().unwrap();
let timelapse_segments = file.timelapse_segments().unwrap();

License

This project is licensed under the MIT License - see the LICENSE file for details.

Commit count: 1

cargo fmt