Latest Release Note (June 2025)

GroupDocs.Comparison version 25.6 brings performance improvements and bug fixes to enhance the overall product experience.

Full list of changes in this release

KeyCategorySummary
COMPARISONNET-4434EnhancementCreated ability to specify border color
COMPARISONNET-4435🔧 FixFixed long processing times and poor output quality in image file comparison
COMPARISONNET-4404🔧 FixShapes in Word headers not detected during comparison

Major Features

Created ability to specify border color

We’ve added a new option to style comparison results more precisely — developers can now set a custom border color for changes using StyleSettings.BorderColor

CompareOptions options = new CompareOptions()
{
    DeletedItemStyle = new StyleSettings()
    {
        HighlightColor = System.Drawing.Color.Red,
        ShapeColor = System.Drawing.Color.LightCoral,
        BorderColor = System.Drawing.Color.Red
    }
};