Sort Score
Result 10 results
Languages All
Labels All
Results 661 - 670 of 2,096 for

markdown editor java

(0.06 sec)
  1. Working with metadata in PNG images | GroupDocs

    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....Markdown Product Solution GroupDocs...Product Solution GroupDocs.Editor Product Solution GroupDocs...

    docs.groupdocs.com/metadata/java/working-with-m...
  2. Developer Guide | GroupDocs

    Developer Guide section explains all aspects of GroupDocs.Editor for Java file Editor features, provides code snippets and examples of editing Microsoft Office formats progammatically in Java applications...Markdown Product Solution GroupDocs...Product Solution GroupDocs.Editor Product Solution GroupDocs...

    docs.groupdocs.com/editor/java/developer-guide/
  3. Adding watermarks | GroupDocs

    GroupDocs.Watermark for Java supports the following watermark types. TextWatermark ImageWatermark Adding watermark to any supported document format using GroupDocs.Watermark consists of some easy steps. Following are the steps to add a watermark to a document. Load the document Create and initialize watermark object Set watermark properties Add a watermark to the document Save the document For more details please refer to the following guides:...Markdown Product Solution GroupDocs...Product Solution GroupDocs.Editor Product Solution GroupDocs...

    docs.groupdocs.com/watermark/java/adding-waterm...
  4. Working with metadata in FLV files | GroupDocs

    Reading FLV header properties The GroupDocs.Metadata API supports extracting format-specific information from the FLV file header. The following are the steps to read the header of an FLV file. Load an FLV video Get the root metadata package Extract the native metadata package using the FlvRootPackage.getHeader method Read the FLV header properties advanced_usage.managing_metadata_for_specific_formats.video.flv.FlvReadHeaderProperties try (Metadata metadata = new Metadata(Constants.InputFlv)) { FlvRootPackage root = metadata.getRootPackageGeneric(); System.out.println(root.getHeader().getVersion()); System.out.println(root.getHeader().hasAudioTags()); System.out.println(root.getHeader().hasVideoTags()); System.out.println(root.getHeader().getTypeFlags()); } Working with XMP metadata GroupDocs....Markdown Product Solution GroupDocs...Product Solution GroupDocs.Editor Product Solution GroupDocs...

    docs.groupdocs.com/metadata/java/working-with-m...
  5. Set image size limits | GroupDocs

    This article shows how to set image size limits when rendering image to PNG or JPEG...Markdown Product Solution GroupDocs...Product Solution GroupDocs.Editor Product Solution GroupDocs...

    docs.groupdocs.com/viewer/java/set-image-size-l...
  6. Migration Notes | GroupDocs

    Why To Migrate? Here are the key reasons to use the new updated API provided by GroupDocs.Parser for Java since version 19.11: Parser class is introduced as a single entry point to extract data from the document. Data extraction was unified for all data types. The overall document related classes were unified to common. Product architecture was redesigned from scratch in order to simplify passing options and classes to manipulate data....Markdown Product Solution GroupDocs...Product Solution GroupDocs.Editor Product Solution GroupDocs...

    docs.groupdocs.com/parser/java/migration-notes/
  7. Remove annotation from document | GroupDocs

    This page describes how to remove annotations from document when collaborate, edit and annotate documents using GroupDocs.Annotation for Java....Markdown Product Solution GroupDocs...Product Solution GroupDocs.Editor Product Solution GroupDocs...

    docs.groupdocs.com/annotation/java/remove-annot...
  8. Subset fonts | GroupDocs

    This topic describes how to subset fonts in PDF file using the GroupDocs.Viewer Java API....Markdown Product Solution GroupDocs...Product Solution GroupDocs.Editor Product Solution GroupDocs...

    docs.groupdocs.com/viewer/java/optimization-pdf...
  9. Merge Excel spreadsheets | GroupDocs

    Follow this guide and learn how to merge MS Excel spreadsheets using Java programming language....Markdown Product Solution GroupDocs...Product Solution GroupDocs.Editor Product Solution GroupDocs...

    docs.groupdocs.com/merger/java/merge/excel/
  10. Load a password-protected document | GroupDocs

    This example demonstrates how to load a password-protected document. advanced_usage.loading_files.LoadPasswordProtectedDocument // Specify the password LoadOptions loadOptions = new LoadOptions(); loadOptions.setPassword("123"); // Constants.ProtectedDocx is an absolute or relative path to your document. Ex: @"C:\Docs\source.docx" try (Metadata metadata = new Metadata(Constants.ProtectedDocx, loadOptions)) { // Extract, edit or remove metadata here } More resources GitHub examples You may easily run the code above and see the feature in action in our GitHub examples:...Markdown Product Solution GroupDocs...Product Solution GroupDocs.Editor Product Solution GroupDocs...

    docs.groupdocs.com/metadata/java/load-a-passwor...