This article explains how to sign document with QR-code electronic signatures using extended options with GroupDocs.Signature API....resources GitHub Examples You may easily run the code above and...
The GroupDocs Metadata API provides the feature to read basic metadata in CAD files. The supported CAD formats are:
DWG DXF Reading CAD metadata To access metadata in a CAD drawing, the GroupDocs.Metadata API provides the CadRootPackage.getCadPackage method.
The following code snippet reads metadata associated with a CAD file.
advanced_usage.managing_metadata_for_specific_formats.cad.CadReadNativeMetadataProperties
try (Metadata metadata = new Metadata(Constants.InputDxf)) { CadRootPackage root = metadata.getRootPackageGeneric(); System.out.println(root.getCadPackage().getAcadVersion()); System.out.println(root.getCadPackage().getAuthor()); System.out.println(root.getCadPackage().getComments()); System.out.println(root.getCadPackage().getCreatedDateTime()); System.out.println(root.getCadPackage().getHyperlinkBase()); System.out.println(root.getCadPackage().getKeywords()); System.out.println(root.getCadPackage().getLastSavedBy()); System.out.println(root.getCadPackage().getTitle()); // ....resources GitHub examples You may easily run the code above and...
This article gives the knowledge of the API methods which can be used to perform operations about Synonym dictionary using Java....resources GitHub examples You may easily run the code from documentation...
Programmatically generate reports by converting JSON data to PDF & Word using templates in Java. PDF & DOCX reports using report generation Java API....Download or Configure # You may download the JAR file from the...
GroupDocs.Search for Node.js has the ability to remove individual documents from the index that are indexed from a stream or structure....resources GitHub examples You may easily run the code from documentation...
Why change is considered as a hard but yet good thing to occur? Why the updates are important? This is because if there is no change there is no progress and staying the same over the time makes the things die. The updates in the software components are also similar when a new version of the same software replaces the old one. A software that remains the same and doesn’t introduce any improvements or new features becomes obsolete....the breaking changes that you may face after upgrading to a version...
Discover how to convert TXT to HTML using Node.js with GroupDocs.Conversion. Easily export TXT to HTML in Node.js with a reliable cross-platform API.... Updated on 15 May 2025 English Français Deutsch...
Extract MP3 tags from the mp3 files in Java. Read the ID3v1, ID3v2, Lyrics, and APEv2 metadata standard tags from the mp3 files using Java Metadata API.... For the details, you may visit the API Reference . <repository>...
This article explains that how to search text from Microsoft OneNote sections presentations...resources GitHub examples You may easily run the code above and...
To extract metadata from Microsoft Office Word documents getMetadata method is used. This method allows to extract the following metadata:
Name Description title The title of the document. subject The subject of the document. keywords The keyword of the document. comments The comments of the document. content-status The content status of the document. category The category of the document. company The company of the document. manager The manager of the document....resources GitHub examples You may easily run the code above and...