DotFastLZ.Packaging
2023.10.2
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package DotFastLZ.Packaging --version 2023.10.2
NuGet\Install-Package DotFastLZ.Packaging -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" 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 --version 2023.10.2
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: DotFastLZ.Packaging, 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 as a Cake Addin #addin nuget:?package=DotFastLZ.Packaging&version=2023.10.2 // Install DotFastLZ.Packaging as a Cake Tool #tool nuget:?package=DotFastLZ.Packaging&version=2023.10.2
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
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 | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. 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. |
.NET Core | netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.1 is compatible. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
.NETStandard 2.1
- DotFastLZ.Compression (>= 2023.10.2)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.