Skip to content

Releases: imazen/imageflow-dotnet

v0.7.23 - Fix canvas color serialization

18 Mar 23:55
1b70bf5
Compare
Choose a tag to compare

v0.7.22 - Introduce Imageflow.AllPlatforms aggregation package

18 Mar 01:24
Compare
Choose a tag to compare

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)

14 Jan 00:50
Compare
Choose a tag to compare

v0.7.20 - Add support for DecodeCommands.IgnoreColorProfileErrors

14 Dec 21:29
Compare
Choose a tag to compare
  • Add support for DecodeCommands.IgnoreColorProfileErrors.

v0.7.19 - NuGet IncludeUntrackedSources and ContinuousIntegrationBuild

22 Nov 22:57
Compare
Choose a tag to compare
Enable EmbedUntrackedSources and (when CI=true) ContinuousIntegration…

v0.7.18 - Include symbols

22 Nov 22:23
Compare
Choose a tag to compare
AppVeyor.yml: Try different regex for snupkg inclusion

v0.7.11 - Upgrade to Imageflow 1.5.3, allow setting matte color on jpegs

22 Nov 09:18
Compare
Choose a tag to compare
  • 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

12 Nov 01:24
Compare
Choose a tag to compare
  • Add VersionInfo.GitTag and VersionInfo.GitDescribeAlways

v0.7.9 - Add BuildJobResults.DecodeResults to get decoded image dimensions; upgrade to imageflow 1.5.2

11 Nov 06:51
Compare
Choose a tag to compare
  • Add BuildJobResults.DecodeResults to get decoded image dimensions
  • Upgrade to imageflow 1.5.2

v0.7.8

29 Oct 04:52
Compare
Choose a tag to compare
  • 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.