Skip to content

Idiomatic Rust bindings to the JAB Code standard implementation

License

Notifications You must be signed in to change notification settings

IGI-111/jabcode-rs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

jabcode-rs

Crate status Crate docs

Idiomatic Rust bindings to the JAB Code standard implementation.

Usage

let image = jabcode::write_jabcode(
	"Hello world".as_bytes(),
	&jabcode::WriteOptions::default()).unwrap();

let buf = jabcode::read_jabcode(&image).unwrap();
let output = String::from_utf8(buf).unwrap();
assert_eq!("Hello world", output);

About

Idiomatic Rust bindings to the JAB Code standard implementation

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages