PhotoSauce.NativeCodecs.Libjpeg
3.0.2-preview2
Prefix Reserved
dotnet add package PhotoSauce.NativeCodecs.Libjpeg --version 3.0.2-preview2
NuGet\Install-Package PhotoSauce.NativeCodecs.Libjpeg -Version 3.0.2-preview2
<PackageReference Include="PhotoSauce.NativeCodecs.Libjpeg" Version="3.0.2-preview2" />
paket add PhotoSauce.NativeCodecs.Libjpeg --version 3.0.2-preview2
#r "nuget: PhotoSauce.NativeCodecs.Libjpeg, 3.0.2-preview2"
// Install PhotoSauce.NativeCodecs.Libjpeg as a Cake Addin #addin nuget:?package=PhotoSauce.NativeCodecs.Libjpeg&version=3.0.2-preview2&prerelease // Install PhotoSauce.NativeCodecs.Libjpeg as a Cake Tool #tool nuget:?package=PhotoSauce.NativeCodecs.Libjpeg&version=3.0.2-preview2&prerelease
PhotoSauce.NativeCodecs.Libjpeg
This MagicScaler plugin wraps the libjpeg-turbo native JPEG codec.
Windows includes a JPEG codec that is auto-discoverable by the MagicScaler pipeline. This plugin adds JPEG support on non-Windows platforms or may be used on Windows for improved performance and capabilities.
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).
Standard releases of libjpeg
and libjpeg-turbo
are not usable reliably from .NET; a custom build is required. A vcpkg port containing the customizations is located in the PhotoSauce GitHub repo if you need to build for a platform not included in this package.
Usage
Codec Registration
To register the codec, call the UseLibjpeg
extension method from your CodecManager.Configure
action at app startup. By default, the plugin will remove/replace the Windows JPEG codec if it is present.
using PhotoSauce.MagicScaler;
using PhotoSauce.NativeCodecs.Libjpeg;
CodecManager.Configure(codecs => {
codecs.UseLibjpeg();
});
Using the Codec
Once registered, the codec will automatically detect and decode compatible images.
To encode JPEG images, the encoder MIME type can be set on ProcessImageSettings
:
var settings = new ProcessImageSettings();
settings.TrySetEncoderFormat(ImageMimeTypes.Jpeg)
Or the encoder can be selected by file extension on overloads accepting file paths:
MagicImageProcessor.ProcessImage(@"\img\input.png", @"\img\output.jpg", 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 |
---|---|---|
3.0.2-preview2 | 61,231 | 3/6/2024 |
3.0.2-preview1 | 139 | 3/6/2024 |
3.0.0-preview1 | 50,365 | 10/12/2023 |
2.1.4-preview1 | 57,925 | 11/8/2022 |
See https://github.com/saucecontrol/PhotoSauce/releases for release-specific notes.