AnimatedPngCreator 1.0.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 AnimatedPngCreator --version 1.0.2
NuGet\Install-Package AnimatedPngCreator -Version 1.0.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="AnimatedPngCreator" Version="1.0.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add AnimatedPngCreator --version 1.0.2
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: AnimatedPngCreator, 1.0.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 AnimatedPngCreator as a Cake Addin #addin nuget:?package=AnimatedPngCreator&version=1.0.2 // Install AnimatedPngCreator as a Cake Tool #tool nuget:?package=AnimatedPngCreator&version=1.0.2
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
AnimatedPngCreator
Creates animated PNG out ouf a sequence of Images.
Dispose the creator to end the creating process. On disposing the count of images will be written to the header.
27.8.2018 Filter added to detect unchanged pixels, console app added
The filter to remove unchanged pixels is on by default. If you don't want to use the filter, you just have to pass a config to the constructor:
var config = new AnimatedPngCreator.Config
{
FilterUnchangedPixels = false
};
using (var apngCreator = new AnimatedPngCreator(outputFile, image1.Width, image1.Height, config))
Example 1:
// Add three images to an APNG
using CMK;
using System.Drawing;
using System.IO;
namespace ApngTest
{
class Program
{
static void Main(string[] args)
{
Image image1 = Image.FromFile("filename1.bmp");
Image image2 = Image.FromFile("filename2.jpg");
Image image3 = Image.FromFile("filename3.png");
short frameDelay = 1000 / 5; //5 frames per second
using (FileStream outputFile = File.Create("animated.png"))
{
using (var apngCreator = new AnimatedPngCreator(outputFile, image1.Width, image1.Height))
{
apngCreator.WriteFrame(image1, frameDelay);
apngCreator.WriteFrame(image2, frameDelay);
apngCreator.WriteFrame(image3, frameDelay);
}
}
}
}
}
Example 2:
using CMK;
using System.Collections.Generic;
using System.Drawing;
using System.IO;
namespace ApngTest
{
class Program
{
static void Main(string[] args)
{
List<Image> images = new List<Image>
{
Image.FromFile("filename1.bmp"),
Image.FromFile("filename2.jpg"),
Image.FromFile("filename3.png")
};
short frameDelay = 1000 / 5; //5 frames per second
using (FileStream outputFile = File.Create("animated.png"))
{
using (var apngCreator = new AnimatedPngCreator(outputFile, images[0].Width, images[0].Height))
{
foreach(var image in images)
{
apngCreator.WriteFrame(image, frameDelay);
}
}
}
}
}
}
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net452 is compatible. net46 was computed. net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
This package has 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.
Filter added to detect unchanged pixels