GroupDocs.Signature for .NET 20.11 Release Notes

Major Features

There are about ten important bug fixes, improvements and features in this release. New improvements are related to optimization of Open Office document saving and Text signatures rendering on the Image documents. The new feature with Pdf digital appearance allows to customize font of the labels. Below the list of most notable changes in release of GroupDocs.Signature for .NET 20.11:

  • Implemented additional customization of Pdf Digital Signature appearance.
  • Improved saving Open Office documents with the OTT file format.
  • Implemented support of Native Text Signature implementation on the Image documents.
  • Fixed major issues with reading and signing Word processing documents.
  • Fixed issues with the image rendering for the Spreadsheet documents.
  • Fixed null-references bugs with accessing not initialized objects across the signing process.

Full List of Issues Covering all Changes in this Release

KeySummaryIssue Type
SIGNATURENET-3207Implement Font customization for Pdf Digital Signature AppearanceFeature
SIGNATURENET-3188Open office document content is slightly changed after saving for OTT format typesImprovement
SIGNATURENET-3139Involve support of Text Signature options with Native implementation for Image documentsImprovement
SIGNATURENET-3187Exception while obtaining watermark type for Word processing documentsBug
SIGNATURENET-3186Can not sign second page of Word processing documentBug
SIGNATURENET-3185Document Information returns incorrect number of pages for Pdf filesBug
SIGNATURENET-3184Can not sign Open Office document for ODT format filesBug
SIGNATURENET-3183A generic error occurred in GDI+ for Spreadsheet documentsBug
SIGNATURENET-3160NullReference exception occurs when Text property of StampLine is not set for Stamp SignaturesBug
SIGNATURENET-3158NullReference exception occurs when Margin property of signature options is nullBug

Public API and Backward Incompatible Changes

Class PdfDigitalSignatureAppearance was update with new properties that allow to customize Font label appearance of PDF digital sigantures.

Class PdfDigitalSignatureAppearance was updated with new properties FontFamilyName and FontSize to custmomize Font of Digital Signature appearances labels.

Updated class PdfDigitalSignatureAppearance

public sealed class PdfDigitalSignatureAppearance : SignatureAppearance
{
    .....
    /// <summary>
    /// Gets or sets the Font family name to display the labels. Default value is "Arial".
    /// </summary>
    public string FontFamilyName { get; set; }

    /// <summary>
    /// Gets or sets the Font size to display the labels. Default value is 10.
    /// </summary>
    public double FontSize{ get; set; }

    ......

}

Class PdfDigitalSignature was updated. Property Authority was removed.

Class PdfDigitalSignature was updated with removed property Authority.