GroupDocs.Annotation 20.2.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package GroupDocs.Annotation --version 20.2.0
NuGet\Install-Package GroupDocs.Annotation -Version 20.2.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.Annotation" Version="20.2.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add GroupDocs.Annotation --version 20.2.0
#r "nuget: GroupDocs.Annotation, 20.2.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.Annotation as a Cake Addin
#addin nuget:?package=GroupDocs.Annotation&version=20.2.0

// Install GroupDocs.Annotation as a Cake Tool
#tool nuget:?package=GroupDocs.Annotation&version=20.2.0

.NET API for Document Annotation

Its an on-premise API that seamlessly integrates document annotation features into your .NET applications. Apply graphic, text and watermark annotations.

Document Annotation Processing Features

  • Import document annotations.
  • Support for adding, removing or replying to annotation comments.
  • Export annotated document back to its original format.
  • Render document pages as images.
  • Generate document thumbnails or document image preview.
  • Support for default cache (local disk) or custom cache (Amazon S3,Dropbox etc.).
  • Get list of supported file formats.
  • Fetch document information, such as, page count & file size.
  • Extract annotations from a document and serialize to XML format.
  • Remove previously added annotations from a document.
  • Update specific annotation properties (size, color etc.).

New Features in Version 20.2.0

  • Ability to add Image annotation to Diagrams.

Enhancements in Version 20.2.0

  • Added overloads for Annotator Remove Method.
  • Implement image extracting to ImageAnnotation.

For the detailed list, please visit GroupDocs.Annotation for .NET 20.2 Release Notes.

Microsoft Office Annotation Formats

Microsoft Word: DOC, DOCM, DOCX, DOT, DOTM, DOTX, RTF Microsoft Excel: XLS, XLSB, XLSM, XLSX Microsoft PowerPoint: PPT, PPTX, PPSX, PPS Microsoft Visio: VSD, VSDX, VSS, VST

Other Annotation Formats

Portable: PDF (PDF/A-1a, PDF/A-1b, PDF/A-2a) OpenDocument: ODT, ODS, ODP Images: TIF, TIFF, JPG, JPEG, PNG, BMP AutoCAD: DWG, DXF Email: EML Web: HTML Others: DCM

Supported Graphic Annotation Types

Area: marks an area with a rectangle Arrow: draws an arrow on a document Distance: measures a distance between objects in a document Ellipse: draws elliptic annotation in a document Point: sticks comments to any point in a document Polyline: draws shapes and freehand lines Resource Redaction: fills black rectangle with fixed position TextField: adds rectangle with a text inside

Supported Text Annotation Types

Highlight: highlights and comments selected text Link: adds a hyperlink to the document Replacement: replaces original text with user’s text Strikeout: marks text with a strikethrough styling Text Redaction: fills part of text with black rectangle Underline: marks text with an underline styling

Supported Watermark Annotation Types

Diagonal: adds diagonal text watermark Horizontal: adds horizontal text watermark

Supported Platforms

GroupDocs.Annotation for .NET supported platforms are listed below: .NET Standard 2.0: Any type of .NET Standard 2.0 application is supported (since Q4 2019). .NET Framework: Any type of .NET Framework version 2.0 (or later) application is supported - ASP.NET, Web Services, WinForms, WPF and others. Full support for 32-bit and 64-bit. Windows Azure: GroupDocs.Annotation for .NET runs on Windows Azure. Mono: You can use GroupDocs.Annotation for .NET to build applications with Mono.

Getting Started with GroupDocs.Annotation for .Net

Are you ready to give GroupDocs.Annotation for .NET a try? Simply execute Install-Package GroupDocs.Annotation from Package Manager Console in Visual Studio to fetch & reference GroupDocs.Annotation assembly in your project. If you already have GroupDocs.Annotation for .Net and want to upgrade it, please execute Update-Package GroupDocs.Annotation to get the latest version.

Please check the GitHub Repository for other common usage scenarios.

Use C# Code to Save Annotation-only Pages of PDF File

// for this example input file ("input.pdf") must have at least 10 pages
using (Annotator annotator = new Annotator(“input.pdf”))
{
    AreaAnnotation area = new AreaAnnotation()
    {
        Box = new Rectangle(100, 100, 100, 100),
        BackgroundColor = 65535,
        PageNumber = 1
    };
    EllipseAnnotation ellipse = new EllipseAnnotation()
    {
        Box = new Rectangle(100, 100, 100, 100),
        BackgroundColor = 123456,
        PageNumber = 9
    };
    annotator.Add(new List<AnnotationBase>() { area, ellipse });
    annotator.Save(“result.pdf” new SaveOptions { OnlyAnnotatedPages = true});
}

Product Page | Documentation | API Reference | Code Samples | Blog | Free Support | Temporary License

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 netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  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 tizen40 was computed.  tizen60 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
24.4.0 507 4/8/2024
23.12.0 1,633 12/29/2023
23.6.0 6,520 6/30/2023
23.5.0 5,189 5/31/2023
23.4.0 2,623 4/11/2023
23.1.0 3,601 1/31/2023
22.11.0 1,932 11/30/2022
22.9.0 1,569 9/30/2022
22.5.1 1,777 8/9/2022
21.5.0 1,117 5/31/2021
21.4.0 6,315 4/30/2021
21.3.0 6,087 3/31/2021
21.2.0 36,728 2/26/2021
21.1.0 2,280 1/29/2021
20.11.0 29,570 11/30/2020
20.10.0 21,321 10/30/2020
20.9.0 17,989 9/30/2020
20.8.0 18,119 8/31/2020
20.7.0 17,919 7/31/2020
20.6.0 41,528 6/26/2020
20.5.0 29,105 5/29/2020
20.4.1 29,752 4/27/2020
20.4.0 17,398 4/13/2020
20.2.0 30,674 2/28/2020
20.1.0 18,363 1/31/2020
19.12.0 27,484 12/24/2019
19.11.0 26,007 11/29/2019
19.10.0 1,285 10/28/2019
19.9.0 983 9/25/2019
19.6.0 2,282 6/27/2019
19.4.1 1,953 5/14/2019
19.4.0 880 5/6/2019
19.3.0 1,707 3/28/2019
19.1.0 1,707 1/28/2019
18.12.0 2,073 12/5/2018
18.10.0 1,311 11/5/2018
18.9.0 1,249 10/3/2018
18.8.0 1,197 8/28/2018
18.7.1 1,200 8/6/2018
18.7.0 1,226 7/16/2018
18.6.0 1,272 6/14/2018
18.5.0 1,188 5/21/2018
18.4.0 1,362 4/16/2018
18.3.0 1,267 3/13/2018
18.2.0 1,285 2/7/2018
18.1.0 1,211 1/19/2018
17.12.0 8,020 12/7/2017
17.11.0 1,367 11/2/2017
17.10.0 1,291 10/2/2017