DotFastLZ.Packaging.Tools 2023.10.2

There is a newer version of this package available.
See the version list below for details.
dotnet add package DotFastLZ.Packaging.Tools --version 2023.10.2
NuGet\Install-Package DotFastLZ.Packaging.Tools -Version 2023.10.2
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="DotFastLZ.Packaging.Tools" Version="2023.10.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add DotFastLZ.Packaging.Tools --version 2023.10.2
#r "nuget: DotFastLZ.Packaging.Tools, 2023.10.2"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install DotFastLZ.Packaging.Tools as a Cake Addin
#addin nuget:?package=DotFastLZ.Packaging.Tools&version=2023.10.2

// Install DotFastLZ.Packaging.Tools as a Cake Tool
#tool nuget:?package=DotFastLZ.Packaging.Tools&version=2023.10.2

License .NET CodeQL Repo Size Languages

Introduction

  • DotFastLZ is a C# port of ariya/FastLZ
  • DotFastLZ can be used in C# projects and Unity3D, and it's great for compressing small, repetitive data.

Usage: FastLZ

for (int level = 1; level <= 2; ++level)
{
    // compress
    var input = GetInputSource();
    var estimateSize = FastLZ.EstimateCompressedSize(input.Length);
    var comBuf = new byte[estimateSize];
    var comBufSize = FastLZ.CompressLevel(level, input, input.Length, comBuf);

    // decompress
    byte[] decBuf = new byte[input.Length];
    var decBufSize = FastLZ.Decompress(comBuf, comBufSize, decBuf, decBuf.Length);

    // compare
    var compareSize = FastLZ.MemCompare(input, 0, decBuf, 0, decBufSize);

    // check
    Assert.That(decBufSize, Is.EqualTo(input.Length), "decompress size error");
    Assert.That(compareSize, Is.EqualTo(input.Length), "decompress compare error");
}

Usage: 6pack

$ 6pack --help

6pack: high-speed file compression tool
Copyright (C) Ariya Hidayat, Choi Ikpil(ikpil@naver.com)
 - https://github.com/ikpil/DotFastLZ

Usage: 6pack [options] input-file output-file

Options:
  -1    compress faster
  -2    compress better
  -v    show program version
  -d    decompression (default for .fastlz extension)
  -mem  check in-memory compression speed
Product Compatible and additional computed target framework versions.
.NET net7.0 is compatible.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2024.1.1 116 3/2/2024
2023.10.5 221 10/29/2023
2023.10.4 99 10/20/2023
2023.10.3 113 10/20/2023
2023.10.2 114 10/3/2023
2023.10.1 108 10/3/2023