Working with XMP metadata GroupDocs.Metadata for Java allows managing XMP metadata in TIFF images. For more details please refer to the following guide: Working with XMP Metadata.
Working with EXIF metadata The GroupDocs.Metadata API supports handling EXIF metadata in TIFF images. Please find appropriate code samples in the Working with EXIF Metadata section.
Working with IPTC metadata GroupDocs.Metadata for Java is also able to work with IPTC metadata in TIFF images....Acquisition Ask AI GroupDocs Documentation / GroupDocs.Metadata Product...Family / GroupDocs.Metadata for Java / Developer Guide / Advanced...
This article describes how to enable the inline styles option for WordProcessing Documents to store CSS styles directly inside the HTML markup using GroupDocs.Editor for Node.js via Java....Acquisition Ask AI GroupDocs Documentation / GroupDocs.Editor Product...Developer Guide / EditDocument / Edit Word Document / Enabling Inline...
Easily convert PDF to MD using Node.js with a simple and efficient process. Learn how to export PDF to MD in Node.js for seamless text extraction and Document conversion....js Handling various document formats is crucial for developers...writing structured documents, documentation, and web content....
This example demonstrates how to load a file of some particular format.
advanced_usage.loading_files.LoadingFileOfSpecificFormat
// Explicitly specifying the format of a file to load you can spare some time on detecting the format LoadOptions loadOptions = new LoadOptions(FileFormat.Spreadsheet); // Constants.InputXls is an absolute or relative path to your Document. Ex: @"C:\Docs\source.xls" try (Metadata metadata = new Metadata(Constants.InputXls, loadOptions)) { SpreadsheetRootPackage root = metadata.getRootPackageGeneric(); // Use format-specific properties to extract or edit metadata System....Acquisition Ask AI GroupDocs Documentation / GroupDocs.Metadata Product...Family / GroupDocs.Metadata for Java / Developer Guide / Advanced...
Editing Word Documents is explained with C# examples to edit DOC, DOCX, ODT files within your .NET application using Document editing API....formats for drafting the documents. Therefore, as a developer...developer, we widely need to edit Word documents in our applications programmatically...
Document Automation APIs to enrich .NET and Java applications to view, edit, annotate, convert, compare, e-sign, parse, split, merge, redact, or classify Documents of almost all the popular file formats....此外,我們還將了解如何使用 C# 和 Java 程式設計來編輯 Word 檔案。...
Learn this guide to know about embedding fonts into output Word Document when editing with GroupDocs.Editor API....Acquisition Ask AI GroupDocs Documentation / GroupDocs.Editor Product...Editor for Java / Developer Guide / Editdocument / Edit Word document...
Reading JPEG2000 comments The GroupDocs.Metadata API supports extracting format-specific information from JPEG2000 images.
The following are the steps to read the JPEG2000 comments (pieces of metadata represented as strings with the length up to 64 kbytes).
Load a JPEG2000 image Get the root metadata package Extract the native metadata package using the Jpeg2000RootPackage.getJpeg2000Package method Read the JPEG2000 comments advanced_usage.managing_metadata_for_specific_formats.image.jpeg2000.Jpeg2000ReadComments
try (Metadata metadata = new Metadata(Constants.InputJpeg2000)) { Jpeg2000RootPackage root = metadata....Acquisition Ask AI GroupDocs Documentation / GroupDocs.Metadata Product...Family / GroupDocs.Metadata for Java / Developer Guide / Advanced...
Reading MOV format-specific properties The GroupDocs.Metadata API supports extracting QuickTime atoms from a MOV video. The atom is the basic data unit in any QuickTime file. Please find more information on QuickTime atoms in the official specification: https://developer.apple.com/library/archive/Documentation/QuickTime/QTFF/QTFFPreface/qtffPreface.html
The following are the steps to extract QuickTime atoms from a MOV video.
Load a MOV video Get the root metadata package Extract the native metadata package using the MovRootPackage.getMovPackage method Read the QuickTime atoms advanced_usage....Acquisition Ask AI GroupDocs Documentation / GroupDocs.Metadata Product...Family / GroupDocs.Metadata for Java / Developer Guide / Advanced...