ILDA.net 1.0.0.1

dotnet add package ILDA.net --version 1.0.0.1
NuGet\Install-Package ILDA.net -Version 1.0.0.1
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="ILDA.net" Version="1.0.0.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add ILDA.net --version 1.0.0.1
#r "nuget: ILDA.net, 1.0.0.1"
#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 ILDA.net as a Cake Addin
#addin nuget:?package=ILDA.net&version=1.0.0.1

// Install ILDA.net as a Cake Tool
#tool nuget:?package=ILDA.net&version=1.0.0.1

ILDA.net

I apologize, but my spoken English is pretty bad. I use a translator for this documentation.

This .net6 library allows you to read, edit, and write ILDA (International Laser Display Association) format in all version.

ILDA formats according to the documentation:

  • 0 = 3D, palette;
  • 1 = 2D, palette;
  • (2 = palette header);
  • (3 = deprecated);
  • 4 = 3D, RGB;
  • 5 = 2D, RGB

Features

  • Open, edit and save *.ild files
  • Add or remove frames, color and points

How to use

IldaFile file = IldaFile.Open("Folder/File.ild");

or

IldaFile file = IldaFile.Parse(byte[]);

If you want to create a file, then don't deny yourself anything.

For example

IldaFile file = new IldaFile();
file.Palette = IldaPalette.GetDefaultPalette();
IldaFrame frame = new IldaFrame(byte Version);
for (int i = 0; i < 100; i += 1)
{
    IldaPoint ildaPoint = new IldaPoint(
        (short)(random.Next(0, short.MaxValue) - half),
        (short)(random.Next(0, short.MaxValue) - half),
        (short)(random.Next(0, short.MaxValue) - half),
        false);

    ildaPoint.PalIndex = (byte)random.Next(0, pal_count - 1);
    frame.Add(ildaPoint);
}
file.Add(frame);
file.Save("Folder/File.ild", false);
Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net6.0

    • No dependencies.

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
1.0.0.1 193 4/10/2023
1.0.0 219 3/18/2023

Update description