<dependency>
<groupId>com.groupdocs</groupId>
<artifactId>groupdocs-annotation-cloud</artifactId>
<version>18.7</version>
</dependency>
compile(group: 'com.groupdocs', name: 'groupdocs-annotation-cloud', version: '18.7')
<dependency org="com.groupdocs" name="groupdocs-annotation-cloud" rev="18.7">
<artifact name="groupdocs-annotation-cloud" ext="jar"/>
</dependency>
libraryDependencies += "com.groupdocs" % "groupdocs-annotation-cloud" % "18.7"
API REST Java Cloud d’annotation de documents
Product Page | Docs | Live Demos | Swagger UI | Code Samples | Blog | Free Support | Free Trial
GroupDocs.Annotation Cloud SDK for Java vous aide à créer des applications Java Cloud Document Annotator qui fonctionnent sans installer de logiciel tiers. Il s’agit d’un wrapper autour de GroupDocs.Annotation Cloud REST APIs.
Fonctionnalités d’annotation de documents en ligne
- Create & add annotations simples ou multiples aux documents en ligne.
- Get description, metadata, and text coordinates of the cloud documents.
- Extract all annotations from a cloud document sous la forme d’une liste d’objets
JSON
. - Téléchargez le document dans le cloud, get it annotated and download.
- Possibilité de remove all the cloud file annotations en une seule fois.
- À l’aide de cloud document preview, créez une représentation d’image de toutes les pages d’un document en ligne.
- Remove all the pages from the cloud storage pour réduire la consommation d’espace cloud.
Types d’annotations cloud pris en charge
- Area Annotation : marquer une zone à l’aide d’un rectangle sur une page dans un document en ligne
- Distance Annotation : distance entre deux points sur une ligne droite marquée comme une annotation dans un document en ligne.
- Ellipse Annotation : marque une partie du document avec une annotation elliptique.
- Image Annotation : annotation de superposition d’image pour annoter le contenu de la page de document en ligne souhaité.
- Link Annotation : une annotation de lien hypertexte dirigée vers une ressource distante.
- Multiple Annotation : ajoute plusieurs annotations au même document en ligne.
- Point Annotation : ajoute une note d’annotation / un pense-bête à l’endroit souhaité dans le document en ligne.
- Polyline Annotation : annotation que vous pouvez dessiner à l’aide de formes ou de lignes à main levée.
- Resource Redaction Annotation : un rectangle noir avec une position fixe que vous pouvez ajouter pour masquer/masquer n’importe quel texte dans un document en ligne.
- Squiggly Annotation : ajoute une ligne ondulée sous le texte sur lequel vous souhaitez attirer l’attention.
Formats de document d’annotation cloud pris en charge
Microsoft Word® : DOC, DOCX, DOCM, DOT, DOTX, DOTM, RTF, TXT
OpenOffice Writer® : ODT, OTT
Microsoft Excel® : XLS, XLSX, XLSB
Microsoft PowerPoint® : PPT, PPTX, PPSX
OpenOffice Impress® : ODP, OTP
Microsoft Visio® : VSD, VDX, VSS, VSDM
Microsoft Outlook® : MSG, EML, EMLX
AutoCAD : CAO
Images : DJVU, JPEG, TIFF, BMP, GIF (images statiques sans animation)
Imagerie médicale : DICOM
Marquage : HTML, MHTML
Mise en page fixe : PDF
Métafichiers : EMF, WMF
Conditions
La création de la bibliothèque cliente de l’API nécessite :
- Java 1.7+
- Maven
Conditions préalables
Pour utiliser GroupDocs.Annotation Cloud SDK pour Java, vous devez créer un compte avec GroupDocs Cloud et rechercher/créer l’ID client et le secret client sur Cloud Dashboard. Un quota gratuit est disponible. Pour plus de détails, consultez GroupDocs Cloud Pricing.
Installez GroupDocs.Annotation-Cloud depuis Maven
Ajoutez le référentiel GroupDocs Cloud à votre application pom.xml
<repository>
<id>repository.groupdocs.cloud</id>
<name>repository.groupdocs.cloud</name>
<url>https://releases.groupdocs.cloud/java/repo/</url>
</repository>
Installer depuis la source
Pour installer la bibliothèque cliente de l’API dans votre référentiel Maven local, exécutez simplement :
mvn clean install
Pour le déployer sur un référentiel Maven distant à la place, configurez les paramètres du référentiel et exécutez :
mvn clean deploy
Reportez-vous au OSSRH Guide pour plus d’informations.
Utilisateurs Maven
Ajoutez cette dépendance au POM de votre projet :
<dependency>
<groupId>com.groupdocs</groupId>
<artifactId>groupdocs-annotation-cloud</artifactId>
<version>22.2</version>
<type>pom</type>
</dependency>
Les autres
Générez d’abord le JAR en exécutant :
mvn clean package
Ensuite, installez manuellement les fichiers JAR suivants :
target/groupdocs-annotation-cloud-22.2.jar
cible/lib/*.jar
Commencer
Veuillez suivre les instructions Quick Start.
Exemple de code Java pour ajouter une annotation de point
// For complete examples and data files, please go to https://github.com/groupdocs-annotation-cloud/groupdocs-annotation-cloud-java-samples
String MyAppKey = ""; // Get AppKey and AppSID from https://dashboard.groupdocs.cloud
String MyAppSid = ""; // Get AppKey and AppSID from https://dashboard.groupdocs.cloud
Configuration configuration = new Configuration(MyAppSid, MyAppKey);
AnnotateApi apiInstance = new AnnotateApi(configuration);
// Create annotation/s.
AnnotationInfo[] annotations = new AnnotationInfo[1];
annotations[0] = new AnnotationInfo();
Point pt = new Point();
pt.setX(1.0);
pt.setY(1.0);
annotations[0].setAnnotationPosition(pt);
Rectangle r = new Rectangle();
r.setX(100.0);
r.setY(100.0);
r.setWidth(200.0);
r.setHeight(100.0);
annotations[0].setBox(r);
annotations[0].setPageNumber(0);
annotations[0].setType(TypeEnum.POINT);
annotations[0].setText("This is point annotation");
annotations[0].setCreatorName("Anonym A.");
// Create request object.
FileInfo fileInfo = new FileInfo();
fileInfo.setFilePath("Annotationdocs\\one-page.docx");
AnnotateOptions options = new AnnotateOptions();
options.setFileInfo(fileInfo);
options.setAnnotations(Arrays.asList(annotations));
options.setOutputPath("Output/one-page-annotated.docx");
AnnotateRequest request = new AnnotateRequest(options);
// Executing api method.
AnnotationApiLink result = apiInstance.annotate(request);
System.out.println("AddPointAnnotation: Point Annotation added: " + result.getTitle());
Autorisation et authentification
Authentication schemes défini pour l’API est le suivant :
JWT
- Type : OAuth 2.0
- Flux : candidature
- URL d’autorisation :https://api.groupdocs.cloud/connect/token
- Token Lifetime : 1 jour (par défaut)
Product Page | Docs | Live Demos | Swagger UI | Code Samples | Blog | Free Support | Free Trial
File | Classifier | Size |
---|---|---|
groupdocs-annotation-cloud-18.7-javadoc.jar | javadoc | 723 KB |
groupdocs-annotation-cloud-18.7-sources.jar | sources | 84 KB |
groupdocs-annotation-cloud-18.7.jar | 141 KB | |
groupdocs-annotation-cloud-18.7.pom | 2 KB |
Annotation de Document Java Cloud REST API GroupDocs.Annotation SDK API Gestion de Documents Cloud REST API SDK d'Annotation de Document Java Annotateur de Documents dans le Cloud Types d'Annotations Annotations de Texte Annotations d'Image Annotations de Formes Propriétés d'Annotation Annotation de PDF Annotation de Word Annotation d'Excel Annotation de PowerPoint Annotation d'Image Rendu de Documents Prévisualisation de Documents Suppression d'Annotations Extraction d'Annotations Gestion de Fichiers Gestion de Dossiers Gestion de Stockage API de Fichier API de Dossier API de Stockage Formats de Fichiers Supportés Informations sur les Documents Obtenir les Pages Informations sur les Annotations Options d'Annotation Utilisation Avancée des Annotations Annotation de Zone Annotation de Flèche Annotation de Distance Annotation d'Ellipse Annotation de Lien Annotation de Point Annotation de Polyligne Annotation de Redaction de Ressources Annotation de Champ de Texte Annotation de Surlignage de Texte Annotation de Redaction de Texte Annotation de Remplacement de Texte Annotation de Barré de Texte Annotation de Soulignement de Texte Annotation de Filigrane Annotation de Ligne Ondulée Microsoft Word OpenOffice Writer Microsoft Excel Microsoft PowerPoint OpenOffice Impress Microsoft Visio Microsoft Outlook AutoCAD DICOM HTML MHTML PDF Métafichiers Maven Installation depuis la Source JWT OAuth 2.0 Autorisation Authentification Exemple de Code Exemples Java Commencer ID Client Secret Client GroupDocs Cloud Stockage Cloud Déployer sur Maven Installer le SDK Configuration de l'API