GroupDocs.Signature-Cloud 19.5.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package GroupDocs.Signature-Cloud --version 19.5.0
NuGet\Install-Package GroupDocs.Signature-Cloud -Version 19.5.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="GroupDocs.Signature-Cloud" Version="19.5.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add GroupDocs.Signature-Cloud --version 19.5.0
#r "nuget: GroupDocs.Signature-Cloud, 19.5.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install GroupDocs.Signature-Cloud as a Cake Addin
#addin nuget:?package=GroupDocs.Signature-Cloud&version=19.5.0

// Install GroupDocs.Signature-Cloud as a Cake Tool
#tool nuget:?package=GroupDocs.Signature-Cloud&version=19.5.0

.NET Cloud REST API for eSigning Documents

Use this REST API to search, verify & create signatures of 6 different types for a lot of file formats from within your C#, ASP.NET, & other .NET cloud apps.

Cloud Document Signing Features

  • Supports application of several types of document signatures.
  • Specify pages (even, odd, specific etc.) to apply the signature on.
  • Configure page padding options.
  • Specify font, color, alignment & other appearance settings for the signature.
  • Apply crop settings for the signature background.
  • Setting to repeat the signature string to fill the specified area.
  • Supports CryptoApi & XmlDsig methods of digital signatures.
  • Configure alignment of text string along the barcode type signature.
  • Support for various types of brushes to perform signature formatting.
  • Apply signature to password-protected documents.
  • Perform document signature verification.
  • Get or set the time at which the document was digitally signed.
  • Option to search some type of signatures from the document.

New Features in Version 19.5.0

  • This is the first release of a completely new version of the API GroupDocs.Signature.Cloud v2.0.
  • V2 provides a much simpler and intuitive API comparing with V1.
  • V2 includes Storage and File API which enables you to manage storage and files.

For the detailed notes, please visit GroupDocs.Signature Cloud 19.5 Release Notes.

Signature Supported File Formats

The following file formats are supported for the barcode, image, QR-code, stamp and text type of signatures: Microsoft Word: DOC, DOCM, DOCX, DOT, DOTM, DOTX Microsoft Excel: XLSX, XLS, XLSB, XLSM, XLTX, XLTM Microsoft PowerPoint: PPT, PPTX, PPTM, PPS, PPSM, PPSX, POTX, POTM OpenOffice: ODT, OTT, ODS, OTS, ODP, OTP Image: BMP, GIF, JPG, JPEG, PNG, SVG, TIF, TIFF, WEBP, DJVU Metafile: WMF CorelDraw: CDR, CMX Adobe Photoshop: PSD Adobe Acrobat: PDF

Digital Signature Supported Formats

Microsoft Word: DOC, DOCM, DOCX, DOT, DOTM, DOTX Microsoft Excel: XLSX, XLS, XLSB, XLSM, XLTX, XLTM OpenOffice: ODS, OTS Adobe Acrobat: PDF

FormField Signature Supported Formats

Microsoft Word: DOC, DOCM, DOCX, DOT, DOTM, DOTX Microsoft Excel: XLSX, XLS, XLSB, XLSM, XLTX, XLTM OpenOffice: ODS, OTS, ODP Adobe Acrobat: PDF

Metadata Signature Supported Formats

Microsoft Word: DOC, DOCM, DOCX, DOT, DOTM, DOTX Microsoft Excel: XLSX, XLS, XLSB, XLSM, XLTX, XLTM Microsoft PowerPoint: PPT, PPTX, PPTM, PPS, PPSM, PPSX, POTX, POTM OpenOffice: ODT, OTT, ODS, OTS, ODP, OTP Image: JPG, JPEG, PNG, SVG, TIF, TIFF Adobe Photoshop: PSD Adobe Acrobat: PDF

Supported Signature Types

  • Text
  • Image
  • Barcode
  • QR-code
  • Digital
  • Stamp

Platform Independence

GroupDocs.Signature Cloud's platform independent document manipulation API is a true REST API that can be used from any platform. You can use it with any language or platform that supports REST, be it the web, desktop, mobile, or the cloud. The API integrates with other cloud services to provide you the flexibility you require for processing documents. It is suitable for the most types of businesses, documents, or content.

Getting Started

You do not need to install anything to get started with GroupDocs.Signature Cloud SDK for .Net. Just create an account at GroupDocs for Cloud and get your application information.

Simply execute Install-Package GroupDocs.Signature-Cloud from Package Manager Console in Visual Studio to fetch & reference GroupDocs.Signature assembly in your project. If you already have GroupDocs.Signature Cloud SDK for .Net and want to upgrade it, please execute Update-Package GroupDocs.Signature-Cloud to get the latest version.

Please check the GitHub Repository for other common usage scenarios.

Verifying QRCode Signature in a Document via C# Code

var configuration = new Configuration
{
    AppSid = Sid,
    AppKey = Key
};

var apiInstance = new SignatureApi(configuration);
var verifyOptionsData = new GroupDocs.Signature.Cloud.Sdk.Model.PdfVerifyQRCodeOptionsData()
{
    DocumentPageNumber = 1,
    QRCodeTypeName="QR",
    Text = "1234567890",
    VerifyAllPages = false
};
    var request = new PostVerificationQRCodeRequest
{
    Name = "02_pages.pdf",
    VerifyOptionsData = verifyOptionsData,
    Password = null,
    Folder = "Output"
};

var response = apiInstance.PostVerificationQRCode(request);

Debug.Print("FleName: " + response.FileName);
Debug.Print("Result: " + response.Result);

Product Page | Documentation | API Reference | Code Samples | Blog | Free Support | Free Trial

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp1.0 was computed.  netcoreapp1.1 was computed.  netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard1.3 is compatible.  netstandard1.4 was computed.  netstandard1.5 was computed.  netstandard1.6 was computed.  netstandard2.0 was computed.  netstandard2.1 was computed. 
.NET Framework net20 is compatible.  net35 was computed.  net40 was computed.  net403 was computed.  net45 was computed.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen30 was computed.  tizen40 was computed.  tizen60 was computed. 
Universal Windows Platform uap was computed.  uap10.0 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
23.12.0 185 12/13/2023
23.6.0 155 6/23/2023
23.4.0 139 4/18/2023
22.6.2 274 12/15/2022
22.6.1 266 12/14/2022
22.6.0 445 6/24/2022
21.11.0 2,873 11/25/2021
21.5.1 363 5/6/2021
21.5.0 339 5/5/2021
20.7.0 558 7/28/2020
19.5.0 723 5/13/2019
19.3.0 681 5/13/2019
18.8.0 803 8/14/2018
18.8.0-alpha-20180814110333 623 8/14/2018
18.5.0 935 5/28/2018
18.5.0-alpha-20180525125817 648 5/28/2018
17.12.0 895 1/23/2018