Skip to content
This repository has been archived by the owner on Feb 27, 2020. It is now read-only.
/ dacado Public archive

Encodes data into image files, also decodes those images.

License

Notifications You must be signed in to change notification settings

potatodiet/dacado

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

dacado

Encodes data into image files, also decodes those images.

Library Usage

final TextEncoder textEncoder = new TextEncoder("Just a test.");

try {
  ImageIO.write(textEncoder.getEncodedImage(), "PNG", new File("text.png"));
} catch (IOException e) {
  e.printStackTrace();
}

final Decoder decoder = new Decoder("text.png");
System.out.println(decoder.getText());

Developers Info

Run tests: gradle test

Build jar: gradle assemble location is build/libs/dacado-(version).jar

About

Encodes data into image files, also decodes those images.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages