Releases: GleamTech/ImageUltimate
Release list
ImageUltimate v5.3.0
Version 5.3.0 - March 13, 2022
- Improved: Stability and performance of image processing and image formats.
Included example projects:
- ASP.NET Core (C#) - Visual Studio 2019+
- ASP.NET Core on .NET Framework (C#)- Visual Studio 2017+
- ASP.NET MVC (C#) - Visual Studio 2012+
- ASP.NET MVC (VB) - Visual Studio 2012+
- ASP.NET WebForms (C#) - Visual Studio 2012+
- ASP.NET WebForms (VB) - Visual Studio 2012+
ImageUltimate v5.2.0
Version 5.2.0 - March 5, 2022
-
Changed: .NET Framework target is changed from net40 to net461.
So from now on, you need to have a .NET Framework 4.6.1 or above project to reference our .NET Framework DLL (not related to our .netstandard2.0 DLL).
Minimum supported development environment version is changed from Visual Studio 2010 to Visual Studio 2012 (first to support net461 targeting pack).
Minimum supported deployment server OS is changed from Windows Server 2003 R2 to Windows Server 2008 R2 SP1 (first to support net461 runtime).
Minimum supported deployment client OS is changed from Windows Vista to Windows 7 SP1 (first to support net461 runtime). -
Improved: Example projects:
-
Updated AspNetCoreCS project to net5.0 (Visual Studio 2019+).
-
Updated AspNetCoreOnNetFullCS project to net472 and ASP.NET Core 2.2.0 (Visual Studio 2017+).
-
Updated AspNetMvcCS and AspNetMvcVB projects to net461 and ASP.NET MVC 5.2.7 (Visual Studio 2012+).
-
Updated AspNetWebFormsCS and AspNetWebFormsVB projects to net461 (Visual Studio 2012+).
-
Fixed HintPath attributes of elements in project files with default path "..\packages" ("Solutiondir\packages")
as msbuild never updates HintPath even if it restores packages via packages.config (even if we provide a NuGet.config).
With default path, users can restore and compile the non-SDK-style projects seamlessly on their machine.
Applies to AspNetMvcCS, AspNetMvcVB, AspNetWebFormsCS, AspNetWebFormsVB projects.
-
Included example projects:
- ASP.NET Core (C#) - Visual Studio 2019+
- ASP.NET Core on .NET Framework (C#)- Visual Studio 2017+
- ASP.NET MVC (C#) - Visual Studio 2012+
- ASP.NET MVC (VB) - Visual Studio 2012+
- ASP.NET WebForms (C#) - Visual Studio 2012+
- ASP.NET WebForms (VB) - Visual Studio 2012+
ImageUltimate v5.1.0
Version 5.1.0 - February 22, 2022
- Improved: Stability and performance of image processing and image formats.
Included example projects:
- ASP.NET Core (C#) - Visual Studio 2017+
- ASP.NET Core on .NET Framework (C#)- Visual Studio 2017+
- ASP.NET MVC (C#) - Visual Studio 2010+
- ASP.NET MVC (VB) - Visual Studio 2010+
- ASP.NET WebForms (C#) - Visual Studio 2010+
- ASP.NET WebForms (VB) - Visual Studio 2010+
ImageUltimate v5.0.0
Version 5.0.0 - November 29, 2021
-
Changed: License keys are changed so please go to https://www.gleamtech.com/upgrade and acquire a new license
key if you want to use this version (or higher). If your one year maintenance has not ended, you will receive a
new free license key on the same page. -
Improved: Stability of image processing.
Included example projects:
- ASP.NET Core (C#) - Visual Studio 2017+
- ASP.NET Core on .NET Framework (C#)- Visual Studio 2017+
- ASP.NET MVC (C#) - Visual Studio 2010+
- ASP.NET MVC (VB) - Visual Studio 2010+
- ASP.NET WebForms (C#) - Visual Studio 2010+
- ASP.NET WebForms (VB) - Visual Studio 2010+
ImageUltimate v4.6.2
Version 4.6.2 - May 26, 2021
- Improved: Stability of image processing.
Included example projects:
- ASP.NET Core (C#) - Visual Studio 2017+
- ASP.NET Core on .NET Framework (C#)- Visual Studio 2017+
- ASP.NET MVC (C#) - Visual Studio 2010+
- ASP.NET MVC (VB) - Visual Studio 2010+
- ASP.NET WebForms (C#) - Visual Studio 2010+
- ASP.NET WebForms (VB) - Visual Studio 2010+
ImageUltimate v4.6.1
Version 4.6.1 - April 18, 2021
-
Improved: Stability of image processing.
-
Fixed: For ASP.NET Core projects, license was being checked even for localhost in some cases (for domain restricted Professional license).
-
Improved: Updated docs. Licensing page now includes all details on how to use the purchased license key.
In Getting Started pages, used .NET 5 (NET Core 3.0+) syntax and put config file (appsettings.json, Web.config)
option first for Core, MVC and WebForms.
In Supported Formats page, added title attribute to cells in support table for easier tracking when column headers are not visible.
Included example projects:
- ASP.NET Core (C#) - Visual Studio 2017+
- ASP.NET Core on .NET Framework (C#)- Visual Studio 2017+
- ASP.NET MVC (C#) - Visual Studio 2010+
- ASP.NET MVC (VB) - Visual Studio 2010+
- ASP.NET WebForms (C#) - Visual Studio 2010+
- ASP.NET WebForms (VB) - Visual Studio 2010+
ImageUltimate v4.6.0
Version 4.6.0 - March 23, 2021
-
Changed: ExifTag is changed from Enum to Class with static properties for Groups (IFDs) to prevent conflicts with same decimal IDs.
Tags updated to latest EXIF 2.32 specification. -
Changed: IptcTag is changed from Enum to Class with static properties for Groups (Records) to prevent conflicts with same decimal IDs.
Tags updated to latest IIM 4.2 specification. -
Fixed: Calling ExifEntry.Description property caused an error for some images due to conflicting tag names in different groups, e.g.
41486 Exif.Photo.FocalPlaneXResolution
37390 Exif.Image.FocalPlaneXResolution
"Overview" example also failed for some images due to this. -
Added: Changes to ExifDictionary and IptcDictionary are now saved automatically when the image is saved.
For adding or updating tags, use ExifDictionary.Set and IptcDictionary.Set methods.
Optimized ExifDictionary and IptcDictionary class API. Usage examples:var entry = imageInfo.ExifDictionary[ExifTag.Image.Artist]; if (imageInfo.ExifDictionary.TryGet(ExifTag.Image.Software, out ExifEntry entry)) { ... } imageTask.Info.ExifDictionary.Remove(ExifTag.Image.Software); imageTask.Info.ExifDictionary.Set(ExifTag.Image.Artist, "UPDATED Artist TAG");
-
Changed: Renamed ImageTask.ToBitmap method to SaveAsBitmap for better API discoverability.
Removed FromBitmap method and made System.Drawing.Bitmap contructor public for loading images in ImageTask and ImageInfo. -
Added: Added ImageTask.SaveAsBytes method for convenience.
Added byte array constructor for loading images in ImageTask and ImageInfo. -
Added: Added ImageTask.SaveAsBase64DataUrl method for convenience.
This generates a base64 encoded data URL in format "data:[][;base64]," which can be used directly in CSS rules and HTML.
And also string constructor (imagePath) now accepts a base64 encoded data URL for loading images in ImageTask and ImageInfo. -
Fixed: Inherited properties were not being displayed in Docs for ImageTask and ImageInfo.
-
Improved: Stability of image processing.
Included example projects:
- ASP.NET Core (C#) - Visual Studio 2017+
- ASP.NET Core on .NET Framework (C#)- Visual Studio 2017+
- ASP.NET MVC (C#) - Visual Studio 2010+
- ASP.NET MVC (VB) - Visual Studio 2010+
- ASP.NET WebForms (C#) - Visual Studio 2010+
- ASP.NET WebForms (VB) - Visual Studio 2010+
ImageUltimate v4.5.0
Version 4.5.0 - February 16, 2021
- Improved: Stability of image processing.
Included example projects:
- ASP.NET Core (C#) - Visual Studio 2017+
- ASP.NET Core on .NET Framework (C#)- Visual Studio 2017+
- ASP.NET MVC (C#) - Visual Studio 2010+
- ASP.NET MVC (VB) - Visual Studio 2010+
- ASP.NET WebForms (C#) - Visual Studio 2010+
- ASP.NET WebForms (VB) - Visual Studio 2010+
ImageUltimate v4.4.2
Version 4.4.2 - January 1, 2021
- Improved: Stability of image processing.
Included example projects:
- ASP.NET Core (C#) - Visual Studio 2017+
- ASP.NET Core on .NET Framework (C#)- Visual Studio 2017+
- ASP.NET MVC (C#) - Visual Studio 2010+
- ASP.NET MVC (VB) - Visual Studio 2010+
- ASP.NET WebForms (C#) - Visual Studio 2010+
- ASP.NET WebForms (VB) - Visual Studio 2010+
ImageUltimate v4.4.1
Version 4.4.1 - November 23, 2020
- Improved: Updated GleamTech.Common.
Included example projects:
- ASP.NET Core (C#) - Visual Studio 2017+
- ASP.NET Core on .NET Framework (C#)- Visual Studio 2017+
- ASP.NET MVC (C#) - Visual Studio 2010+
- ASP.NET MVC (VB) - Visual Studio 2010+
- ASP.NET WebForms (C#) - Visual Studio 2010+
- ASP.NET WebForms (VB) - Visual Studio 2010+