Sort Score
Result 10 results
Languages All
Labels All
Results 721 - 730 of 2,096 for

markdown editor java

(0.62 sec)
  1. Working with metadata in Note formats | GroupDocs

    GroupDocs.Metadata for Java provides functionality that allows working with ONE files created by different versions of Microsoft OneNote. Please see the code samples below for more information. Inspecting Note documents The inspection feature that is introduced in this section doesn’t work with metadata directly but extracts some useful pieces of information that can be considered as metadata under some circumstances. For example, you may want to obtain information about pages in a note document....Markdown Product Solution GroupDocs...Product Solution GroupDocs.Editor Product Solution GroupDocs...

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

    Set image size limits when rendering image to PDF...Markdown Product Solution GroupDocs...Product Solution GroupDocs.Editor Product Solution GroupDocs...

    docs.groupdocs.com/viewer/java/set-image-size-l...
  3. Compare of Variables and Document properties | ...

    This article explains how to activate the comparison of document properties in GroupDocs.Comparison for Java....Markdown Product Solution GroupDocs...Product Solution GroupDocs.Editor Product Solution GroupDocs...

    docs.groupdocs.com/comparison/java/compare-of-v...
  4. OCR support | GroupDocs

    OCR support means the ability to connect an external module (library) for the recognition of printed text (optical character recognition, OCR) on images, either separate or embedded in documents. To connect OCR, you need to implement the IOcrConnector interface in the client code. The following example demonstrates how to implement the OCR connector using com.aspose.ocr library for text recognition in images. String indexFolder = "c:\\MyIndex"; String documentFolder = "c:\\MyDocuments"; // Creating an index Index index = new Index(indexFolder); // Setting the OCR indexing options IndexingOptions options = new IndexingOptions(); options....Markdown Product Solution GroupDocs...Product Solution GroupDocs.Editor Product Solution GroupDocs...

    docs.groupdocs.com/search/java/ocr-support/
  5. Show gap lines instead of changes | GroupDocs

    This article explains how to adjust the display of the output document so that the changed content is replaced with empty lines in GroupDocs.Comparison for Java....Markdown Product Solution GroupDocs...Product Solution GroupDocs.Editor Product Solution GroupDocs...

    docs.groupdocs.com/comparison/java/show-gap-lines/
  6. Working with metadata in ProjectManagement form...

    GroupDocs.Metadata for Java provides functionality that allows working with MPP files created by different versions of Microsoft Project. Please see the code samples below for more information. Reading built-In metadata properties To access built-in metadata of a ProjectManagement document, please use the getDocumentProperties method defined in the DocumentRootPackage class. The following code snippet extracts built-in metadata properties and displays them on the screen. advanced_usage.managing_metadata_for_specific_formats.document.project_management.ProjectManagementReadBuiltInProperties try (Metadata metadata = new Metadata(Constants.InputMpp)) { ProjectManagementRootPackage root = metadata....Markdown Product Solution GroupDocs...Product Solution GroupDocs.Editor Product Solution GroupDocs...

    docs.groupdocs.com/metadata/java/working-with-m...
  7. How to Run Examples | GroupDocs

    We offer multiple solutions on how you can run GroupDocs.Editor examples, by building your own or using our back-end or front-end Java examples out-of-the-box....Markdown Product Solution GroupDocs...Product Solution GroupDocs.Editor Product Solution GroupDocs...

    docs.groupdocs.com/editor/java/how-to-run-examp...
  8. Add image annotation | GroupDocs

    The page describes how to add image annotation to a document using GroupDocs.Annotation for Java....Markdown Product Solution GroupDocs...Product Solution GroupDocs.Editor Product Solution GroupDocs...

    docs.groupdocs.com/annotation/java/add-image-an...
  9. Save only annotated pages | GroupDocs

    The page describes how to save only annotated pages when using GroupDocs.Annotation for Java API....Markdown Product Solution GroupDocs...Product Solution GroupDocs.Editor Product Solution GroupDocs...

    docs.groupdocs.com/annotation/java/save-only-an...
  10. Extracting common image information | GroupDocs

    For all supported image formats the GroupDocs.Metadata API allows extracting common image properties such as width and height, MIME type, byte order, etc. Please see the code snippet below for more information on the feature. Load an image Extract the root metadata package Use the getImageType method to obtain file format information advanced_usage.managing_metadata_for_specific_formats.image.ImageReadFileFormatProperties try (Metadata metadata = new Metadata(Constants.InputPng)) { ImageRootPackage root = metadata.getRootPackageGeneric(); System.out.println(root.getImageType().getFileFormat()); System.out.println(root.getImageType().getByteOrder()); System.out.println(root.getImageType().getMimeType()); System.out.println(root.getImageType().getExtension()); System.out.println(root.getImageType().getWidth()); System.out.println(root.getImageType().getHeight()); } 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/extracting-com...