PhotoSauce.NativeCodecs.Giflib
5.2.2-preview2
Prefix Reserved
dotnet add package PhotoSauce.NativeCodecs.Giflib --version 5.2.2-preview2
NuGet\Install-Package PhotoSauce.NativeCodecs.Giflib -Version 5.2.2-preview2
<PackageReference Include="PhotoSauce.NativeCodecs.Giflib" Version="5.2.2-preview2" />
paket add PhotoSauce.NativeCodecs.Giflib --version 5.2.2-preview2
#r "nuget: PhotoSauce.NativeCodecs.Giflib, 5.2.2-preview2"
// Install PhotoSauce.NativeCodecs.Giflib as a Cake Addin #addin nuget:?package=PhotoSauce.NativeCodecs.Giflib&version=5.2.2-preview2&prerelease // Install PhotoSauce.NativeCodecs.Giflib as a Cake Tool #tool nuget:?package=PhotoSauce.NativeCodecs.Giflib&version=5.2.2-preview2&prerelease
PhotoSauce.NativeCodecs.Giflib
This MagicScaler plugin wraps the GIFLIB native GIF codec.
Windows includes a GIF codec that is auto-discoverable by the MagicScaler pipeline. This plugin adds GIF support on non-Windows platforms.
Requirements
A compatible native binary must be present for this plugin to function. For convenience, the NuGet package includes native binaries for Windows (x86, x64, and ARM64) and Linux (glibc x64 and ARM64).
Usage
Codec Registration
To register the codec, call the UseGiflib
extension method from your CodecManager.Configure
action at app startup. By default, the plugin will remove/replace the Windows GIF codec if it is present.
using PhotoSauce.MagicScaler;
using PhotoSauce.NativeCodecs.Giflib;
CodecManager.Configure(codecs => {
codecs.UseGiflib();
});
Using the Codec
Once registered, the codec will automatically detect and decode compatible images.
To encode GIF images, the encoder MIME type can be set on ProcessImageSettings
:
var settings = new ProcessImageSettings();
settings.TrySetEncoderFormat(ImageMimeTypes.Gif)
Or the encoder can be selected by file extension on overloads accepting file paths:
MagicImageProcessor.ProcessImage(@"\img\input.jpeg", @"\img\output.gif", settings);
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. 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 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. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 is compatible. |
.NET Framework | net461 is compatible. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 is compatible. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETFramework 4.6.1
- PhotoSauce.MagicScaler (= 0.14.2)
-
.NETFramework 4.7.2
- PhotoSauce.MagicScaler (= 0.14.2)
-
.NETStandard 2.0
- PhotoSauce.MagicScaler (= 0.14.2)
-
.NETStandard 2.1
- PhotoSauce.MagicScaler (= 0.14.2)
-
net6.0
- PhotoSauce.MagicScaler (= 0.14.2)
-
net7.0
- PhotoSauce.MagicScaler (= 0.14.2)
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 |
---|---|---|
5.2.2-preview2 | 45,720 | 3/6/2024 |
5.2.2-preview1 | 73 | 3/6/2024 |
5.2.1-preview2 | 45,670 | 10/12/2023 |
5.2.1-preview1 | 48,830 | 11/8/2022 |
See https://github.com/saucecontrol/PhotoSauce/releases for release-specific notes.