Sort Score
Result 10 results
Languages All
Labels All
Results 1,771 - 1,780 of 2,441 for

document editing

(0.04 sec)
  1. Adding metadata | Documentation

    This article shows how to add metadata properties which is the most sophisticated feature of the GroupDocs.Metadata Node.js via Java search engine...Events Acquisition GroupDocs Documentation / GroupDocs.Metadata Product...GitHub examples: Free online document metadata management App Along...

    docs.groupdocs.com/metadata/nodejs-java/adding-...
  2. Working with TORRENT files | Documentation

    In the BitTorrent file distribution system, a torrent file or METAINFO is a computer file that contains metadata about files and folders to be distributed, and usually also a list of the network locations of trackers, which are computers that help participants in the system find each other and form efficient distribution groups called swarms. A torrent file does not contain the content to be distributed; it only contains information about those files, such as their names, sizes, folder structure, and cryptographic hash values for verifying file integrity....Acquisition Ask AI GroupDocs Documentation / GroupDocs.Metadata Product...GitHub examples: Free online document metadata management App Along...

    docs.groupdocs.com/metadata/net/working-with-to...
  3. Handling MPEG audio metadata | Documentation

    This article explains how the The GroupDocs.Metadata API allows reading some common MPEG audio properties from MP3 files....Acquisition Ask AI GroupDocs Documentation / GroupDocs.Metadata Product...GitHub examples: Free online document metadata management App Along...

    docs.groupdocs.com/metadata/java/handling-mpeg-...
  4. Working with metadata in PNG images | Documenta...

    Reading PNG metadata properties The GroupDocs.Metadata API supports extracting format-specific information from PNG images. The following are the steps to read the native PNG metadata. Load a PNG image Get the root metadata package Extract the native metadata package using PngRootPackage.getPngPackage Read the PNG metadata properties advanced_usage.managing_metadata_for_specific_formats.image.png.PngReadTextChunks try (Metadata metadata = new Metadata(Constants.InputPng)) { PngRootPackage root = metadata.getRootPackageGeneric(); for (PngTextChunk chunk : root.getPngPackage().getTextChunks()) { System.out.println(chunk.getKeyword()); System.out.println(chunk.getText()); if (chunk instanceof PngCompressedTextChunk) { PngCompressedTextChunk compressedChunk = (PngCompressedTextChunk) chunk; System....Acquisition Ask AI GroupDocs Documentation / GroupDocs.Metadata Product...GitHub examples: Free online document metadata management App Along...

    docs.groupdocs.com/metadata/java/working-with-m...
  5. Working with CAD metadata | 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()); // ....Acquisition Ask AI GroupDocs Documentation / GroupDocs.Metadata Product...GitHub examples: Free online document metadata management App Along...

    docs.groupdocs.com/metadata/java/working-with-c...
  6. Mastering JSON Comparisons

    Explore the intricacies of JSON data comparisons in this detailed guide. Learn how GroupDocs.Comparison APIs can transform your data analysis with visual and textual comparison tools, addressing common challenges in JSON data interchange....data-interchange format that is easy to edit manually and performs quickly...Changes in data types across documents intended to be identical can...

    blog.groupdocs.com/comparison/mastering-json-co...
  7. Remove Annotations from PPTX using C#

    Gain a clear understanding of how to remove annotations from PPTX using C#. Additionally, you'll find a code example on how to delete annotations in PPTX using C#....allowing for feedback, notes, and edits to be marked directly on the...specialized library that can handle document redaction. GroupDocs.Redaction...

    kb.groupdocs.com/redaction/net/remove-annotatio...
  8. Adding metadata | Documentation

    This article shows how to add metadata properties which is the most sophisticated feature of the GroupDocs.Metadata Java search engine...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Metadata Product...GitHub examples: Free online document metadata management App Along...

    docs.groupdocs.com/metadata/java/adding-metadata/
  9. Extracting metadata | Documentation

    Using the GroupDocs.Metadata search engine you can extract desired metadata properties from files of different types. You don’t need to worry about the exact file format and metadata standards it can deal with. The same code will work for all supported formats in the same way. Most commonly used metadata properties are marked with tags that allow searching them across all supported files in various metadata packages. All tags defined in GroupDocs....Events Acquisition GroupDocs Documentation / GroupDocs.Metadata Product...GitHub examples: Free online document metadata management App Along...

    docs.groupdocs.com/metadata/nodejs-java/extract...
  10. Working with ZIP archives | Documentation

    Get ZIP format metadata The API allows detecting ZIP archives and reading format metadata. The following steps are needed to be followed: Load a ZIP archive Get the root metadata package Extract the native metadata package using the ZipRootPackage.getZipPackage method Read the ZIP archive properties Loop through ZipPackage.getFiles to extract information about the archived files The following code snippet shows how to get metadata from a ZIP archive. advanced_usage.managing_metadata_for_specific_formats.archive.ZipReadNativeMetadataProperties...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Metadata Product...GitHub examples: Free online document metadata management App Along...

    docs.groupdocs.com/metadata/java/working-with-z...