This article gives knowledge about the reverse image search, which makes it possible to search for similar images in ZIP archives, various documents, and individual files....resources GitHub examples You may easily run the code from documentation...
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...
This article provides learning contents about how to generate page previews of documents in .NET using GroupDocs.Parser API...resources GitHub examples You may easily run the code above and...
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...
This article gives the knowledge of the API methods which can be used to perform operations about Character replacements using Java....resources GitHub examples You may easily run the code from documentation...
This article explains how to load PDF, Word, Excel, PowerPoint documents from local disk when using GroupDocs.Parser for Python via .NET....resources GitHub examples You may find more code examples in our...