Releases: imazen/imageflow-dotnet
Releases · imazen/imageflow-dotnet
v0.7.23 - Fix canvas color serialization
v0.7.22 - Introduce Imageflow.AllPlatforms aggregation package
On .NET Core 3.x and .NET 5/6
dotnet add package Imageflow.AllPlatforms
On .NET 4.x (.NET Framework)
PM> Install-Package Imageflow.Net
PM> Install-Package Imageflow.NativeRuntime.win-x86 -pre
PM> Install-Package Imageflow.NativeRuntime.win-x86_64 -pre
PM> Install-Package Imageflow.NativeRuntime.osx-x86_64 -pre
PM> Install-Package Imageflow.NativeRuntime.ubuntu_16_04-x86_64 -pre
Note: On .NET 4.x you must install the appropriate NativeRuntime(s) in the project you are deploying - they have to copy imageflow.dll to the output folder. They are not copied transitively.
v0.7.21 - Fix P/Invoke problem in 32-bit mode (x86)
v0.7.20 - Add support for DecodeCommands.IgnoreColorProfileErrors
- Add support for DecodeCommands.IgnoreColorProfileErrors.
v0.7.19 - NuGet IncludeUntrackedSources and ContinuousIntegrationBuild
Enable EmbedUntrackedSources and (when CI=true) ContinuousIntegration…
v0.7.18 - Include symbols
AppVeyor.yml: Try different regex for snupkg inclusion
v0.7.11 - Upgrade to Imageflow 1.5.3, allow setting matte color on jpegs
- Add LibJpegTurboEncoder.Matte and MozJpegEncoder.Matte to control background color when converting 32-bit PNG or WebP or GIF files * * * Upgrade to Imageflow 1.5.3
v0.7.10 - Add VersionInfo.GitTag and VersionInfo.GitDescribeAlways
- Add VersionInfo.GitTag and VersionInfo.GitDescribeAlways
v0.7.9 - Add BuildJobResults.DecodeResults to get decoded image dimensions; upgrade to imageflow 1.5.2
- Add BuildJobResults.DecodeResults to get decoded image dimensions
- Upgrade to imageflow 1.5.2
v0.7.8
- Add ImageJob.CanDecodeBytes() for determining if Imageflow can likely decode the given image based on its first 12 bytes.
- Add ImageJob.GetContentTypeForBytes() for determining the MIME type of a given image based on its first 12 bytes.
Only jpeg, png, gif, and webp are supported for now.