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

editable document java

(0.06 sec)
  1. Working with metadata in JPEG2000 images | Grou...

    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...

    docs.groupdocs.com/metadata/java/working-with-m...
  2. Working with ZIP archives | GroupDocs

    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...Family / GroupDocs.Metadata for Java / Developer Guide / Advanced...

    docs.groupdocs.com/metadata/java/working-with-z...
  3. How to Edit XML File | GroupDocs

    This article demonstrates how to edit XML files and XML Documents using Node.js via Java....Acquisition Ask AI GroupDocs Documentation / GroupDocs.Editor Product...Guide / Edit Document / How to Edit XML File How to Edit XML File...

    docs.groupdocs.com/editor/nodejs-java/how-to-ed...
  4. Features Overview | GroupDocs

    Redacted meaning is that a process of modifying or editing a Document to remove the confidential information before publishing it. With GroupDocs.Redaction tool you can redact PDF and save redacted Document, redact sensitive and classified information from MS Word (DOC, DOCX and more..), Excel (XLS, XLSX and more..), PowerPoint(PPT, PPTX and more) Documents and images (JPG, PNG, BMP, GIF and more..)....Acquisition Ask AI GroupDocs Documentation / GroupDocs.Redaction Product...Family / GroupDocs.Redaction for Java / Getting Started / Features...

    docs.groupdocs.com/redaction/java/features-over...
  5. PDF & Word Reports from CSV Data using C# | .NE...

    Convert CSV to PDF & Word formats with templates using C#. Automate PDF & DOC/DOCX reports generation using .NET Reporting API by GroupDocs....convert CSV data in Reports using Java . This article will guide you...C# # If you want any manual editing in the automated generated...

    blog.groupdocs.com/assembly/generate-reports-fr...
  6. Metadata redactions | GroupDocs

    This article shows that how Java redaction API allows you to replace or remove metadata using filters or search by regular expression....Acquisition Ask AI GroupDocs Documentation / GroupDocs.Redaction Product...Family / GroupDocs.Redaction for Java / Developer Guide / Basic Usage...

    docs.groupdocs.com/redaction/java/metadata-reda...
  7. Save HTML to folder | GroupDocs

    This article explains how to save edited Document in HTML form to folder at local disk using GroupDocs.Editor for Java features....Acquisition Ask AI GroupDocs Documentation / GroupDocs.Editor Product...Family / GroupDocs.Editor for Java / Developer Guide / EditableDocument...

    docs.groupdocs.com/editor/java/save-html-to-fol...
  8. XML Viewer using C# | Render XML as PDF using ....

    View XML files as PDF using C#. Learn how to render XML files within your own XML viewer .NET application using GroupDocs API....render XML files as other document formats like PDF, JPG, PNG...Viewer for .NET , an API for document viewing that enables the conversion...

    blog.groupdocs.com/viewer/xml-viewer-using-csharp/
  9. Working with metadata in PSD images | GroupDocs

    Reading Photoshop Metadata properties The GroupDocs Metadata API allows the user to read Adobe Photoshop metadata associated with a PSD image. For more information on the Photoshop file format and metadata blocks please refer to the specification: https://www.adobe.com/devnet-apps/photoshop/fileformatashtml/. The code sample below demonstrates how to extract image resource blocks (building blocks of the Photoshop file format) from a PSD image. Load a PSD file Get the root metadata package Extract the ImageResourcePackage instance and obtain a list of ImageResourceBlock objects Iterate trough the collection of resource blocks advanced_usage....Acquisition Ask AI GroupDocs Documentation / GroupDocs.Metadata Product...Family / GroupDocs.Metadata for Java / Developer Guide / Advanced...

    docs.groupdocs.com/metadata/java/working-with-m...
  10. Getting known property descriptors | GroupDocs

    This code snippet demonstrates how to extract information about known properties that can be encountered in a particular package. Load a file to examine Get a collection of PropertyDescriptor instances for any desired metadata package Iterate through the extracted descriptors advanced_usage.GettingKnownPropertyDescriptors try (Metadata metadata = new Metadata(Constants.InputDoc)) { WordProcessingRootPackage root = metadata.getRootPackageGeneric(); for (PropertyDescriptor descriptor : root.getDocumentProperties().getKnowPropertyDescriptors()) { System.out.println(descriptor.getName()); System.out.println(descriptor.getType()); System.out.println(descriptor.getAccessLevel()); for (PropertyTag tag : descriptor.getTags()) { System.out.println(tag); } System.out.println(); } } Note Not all possible properties are presented in the getKnowPropertyDescriptors collection....Acquisition Ask AI GroupDocs Documentation / GroupDocs.Metadata Product...Family / GroupDocs.Metadata for Java / Developer Guide / Advanced...

    docs.groupdocs.com/metadata/java/getting-known-...