GroupDocs.Conversion for .NET 21.10 Release Notes

Major Features

There are 5+ features, improvements and bug-fixes in this release, most notable are:

  • Auto align image watermark
  • Dedicated watermark options for text and image

Full List of Issues Covering all Changes in this Release

KeyCategorySummary
CONVERSIONNET‑4908FeatureImplement image watermark image auto align
CONVERSIONNET‑4885ImprovementSplit watermark options to WatermarkTextOptions and WatermarkImageOptions
CONVERSIONNET‑4432FixStl to Png conversion exception: Parameter is not valid
CONVERSIONNET‑4813FixTIFF to PDF conversion - output larger in size
CONVERSIONNET‑4901FixIncorrect auto align watermark when targeting .NET framework
CONVERSIONNET‑4906FixLow image quality when converting SVG to image

Public API and Backward Incompatible Changes

  1. Introduced new class WatermarkTextOptions

  2. Introduced new class WatermarkImageOptions

  3. There are braking changes if watermark is used

    • For versions before v21.10
    ...
    Watermark = new WatermarkOptions
                    {
                        Text = "Sample watermark",
                        Color = Color.Red,
                        Width = 100,
                        Height = 100,
                        Background = true
                    }
    ...
    
    • from version v21.10 and later
    ...
    Watermark = new WatermarkTextOptions("Sample watermark")
                    {
                        Color = Color.Red,
                        Width = 100,
                        Height = 100,
                        Background = true
                    }
    ...