Skip to content

NotOfficer/Zlib-ng.NET

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

26 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

🚀 Zlib-ng.NET

A .NET wrapper for zlib-ng

GitHub release Nuget Nuget Downloads GitHub issues License


📦 Installation

Install via NuGet:

Install-Package Zlib-ng.NET

✨ Features

  • Thin .NET wrapper over the native zlib-ng library
  • Span-based Compress/Decompress with array, pointer, and nint overloads

🔧 Example Usage

using OodleDotNet;

using var zlib = new Zlibng(@"C:\Test\zlib-ng2.dll");
var compressedBuffer = System.IO.File.ReadAllBytes(@"C:\Test\Example.bin");
var decompressedBuffer = new byte[decompressedSize];
var result = zlib.Decompress(compressedBuffer, decompressedBuffer);

🤝 Contributing

Contributions are welcome and appreciated!

Whether it's fixing a typo, suggesting an improvement, or submitting a pull request — every bit helps.


📄 License

This project is licensed under the MIT License.


⭐️ Star the repo if you find it useful!
Feel free to open an issue if you have any questions or feedback.

About

A .NET wrapper for zlib-ng

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages