GroupDocs.Annotation-Cloud
19.5.0
See the version list below for details.
dotnet add package GroupDocs.Annotation-Cloud --version 19.5.0
NuGet\Install-Package GroupDocs.Annotation-Cloud -Version 19.5.0
<PackageReference Include="GroupDocs.Annotation-Cloud" Version="19.5.0" />
paket add GroupDocs.Annotation-Cloud --version 19.5.0
#r "nuget: GroupDocs.Annotation-Cloud, 19.5.0"
// Install GroupDocs.Annotation-Cloud as a Cake Addin #addin nuget:?package=GroupDocs.Annotation-Cloud&version=19.5.0 // Install GroupDocs.Annotation-Cloud as a Cake Tool #tool nuget:?package=GroupDocs.Annotation-Cloud&version=19.5.0
Document Annotation .NET Cloud REST API
This REST API enhances your C#, ASP.NET & other .NET cloud apps to import, export & process text & figure annotations within documents for 35+ file formats.
Cloud Document Annotation Features
- Fetch document description with meta data and coordinates of text on pages.
- Fetch annotation data from files of supported formats.
- Import annotation information from documents.
- Export annotation information to a document and fetch it as a stream.
- Remove document annotations.
- Get image representation of the document pages.
- Render documents to PDF format with storage URL or stream output.
- Add or remove document or image annotations of various types.
New Features in Version 19.5
- This is the first release of a completely new version of the API
GroupDocs.Annotation.Cloud v2.0
. V2
provides much simpler and intuitive API comparing withV1
.V2
includes Storage and File API which enables users to manage storage and files.
For the detailed notes, please visit GroupDocs.Annotation Cloud 19.5 Release Notes.
Supported Annotation Formats
Microsoft Word: DOC, DOCX, DOCM, DOT, DOTX, DOTM, RTF, TXT Microsoft Excel: XLS, XLSX, XLSB, XLSX Microsoft PowerPoint: PPT, PPTX, PPSX Microsoft Visio: VSD, VDX, VSS, VSDM OpenOffice: OTT, ODT, ODP, OTP Image: JPEG, TIFF, BMP, GIF, DJVU Metafile: EMF, WMF Email: EML, EMLX, MSG Portable: PDF Medical Imagery: DICOM Markup: HTML, MHTML AutoCAD: CAD
Supported Text Annotation Types
Text annotation – add comments to selected text. Text replacement – highlight which text should be replaced with what. Text redaction – hide confidential text. Strikeout/underline – highlight text with strikethroughs/underlines. Typewriter – add sticky notes with rich text.
Supported Figure Annotation Types
Area annotation – add notes to an area highlighted with a rectangle. Point annotation – add notes to any point in the document. Area redaction – hide confidential parts of an image or text. Polyline – draw freehand lines and shapes. Pointer/arrow – drop arrows pointing to an object. Watermark – create text-based watermark overlays. Distance – measure the distance between any objects in a document.
Getting Started
You do not need to install anything to get started with GroupDocs.Annotation Cloud SDK for .NET. Just create an account at GroupDocs for Cloud and get your application information.
Simply execute Install-Package GroupDocs.Annotation-Cloud
from Package Manager Console in Visual Studio to fetch & reference GroupDocs.Annotation assembly in your project. If you already have GroupDocs.Annotation Cloud SDK for .Net and want to upgrade it, please execute Update-Package GroupDocs.Annotation-Cloud
to get the latest version.
Please check the GitHub Repository for other common usage scenarios.
Use C# to Export Annotations and get Document as Stream
var configuration = new Configuration
{
AppSid = Sid,
AppKey = Key
};
var apiInstance = new AnnotationApi(configuration);
List<AnnotationInfo> annotations = new List<AnnotationInfo>();
AnnotationInfo annotation = new AnnotationInfo
{
AnnotationPosition = new Point(852, 154.31),
Replies = new[]
{
new AnnotationReplyInfo {Message = "reply text", RepliedOn = DateTime.Now, UserName = "Admin"},
new AnnotationReplyInfo
{
Message = "reply2 text",
RepliedOn = DateTime.Now,
UserName = "Commentator"
}
},
Box = new Rectangle((float)173.29, (float)154.31, (float)142.5, 9),
PageNumber = 0,
SvgPath =
"[{\"x\":173.2986,\"y\":687.5769},{\"x\":315.7985,\"y\":687.5769},{\"x\":173.2986,\"y\":678.5769},{\"x\":315.7985,\"y\":678.5769}]",
Type = AnnotationType.Text,
CreatorName = "Anonym A."
};
annotations.Add(annotation);
PutExportRequest request = new PutExportRequest()
{
Name ="Annotated.pdf",
Folder=null,
Password=null,
Body=annotations,
};
// Insert/Export annotations to document.
var response = apiInstance.PutExport(request);
Debug.Print("Document Processsed and stream length: " + response.Length);
Product Page | Docs | API Reference | Examples | Blog | Free Support | Free Trial
Product | Versions 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. |
-
.NETFramework 2.0
- Newtonsoft.Json (>= 9.0.1)
-
.NETStandard 1.3
- FubarCoder.RestSharp.Portable.Core (>= 4.0.7)
- FubarCoder.RestSharp.Portable.HttpClient (>= 4.0.7)
- JsonSubTypes (>= 1.1.3)
- Newtonsoft.Json (>= 10.0.3)
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 | 214 | 12/27/2023 |
23.4.0 | 221 | 4/14/2023 |
22.2.0 | 503 | 2/3/2022 |
21.6.0 | 368 | 6/17/2021 |
21.2.0 | 386 | 2/17/2021 |
20.10.0 | 478 | 10/14/2020 |
19.5.0 | 794 | 5/15/2019 |
18.7.0 | 726 | 12/19/2018 |
18.7.0-alpha-20181219073816 | 522 | 12/19/2018 |
18.4.0 | 990 | 5/15/2018 |
18.4.0-alpha-20180514065856 | 851 | 5/15/2018 |
17.12.0 | 1,057 | 1/24/2018 |