Skip to content
/ ASCII85 Public

A C# implementation of the Adobe version ASCII85 coder

License

Notifications You must be signed in to change notification settings

adisib/ASCII85

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ASCII85

A C# implementation of the Adobe version ASCII85 coder. Based on the description presented at https://en.wikipedia.org/wiki/Ascii85

Usage

Example Usage

string testString = "This is a test string.";

byte[] bytesToEncode = Encoding.ASCII.GetBytes(testString);
string encodedString = ASCII85.Encode(bytesToEncode);
Console.WriteLine(encodedString);


byte[] decodedBytes = ASCII85.Decode(encodedString);
string originalString = Encoding.ASCII.GetString(decodedBytes);
Console.WriteLine(originalString);

About

A C# implementation of the Adobe version ASCII85 coder

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages