Sort Score
Result 10 results
Languages All
Labels All
Results 1,961 - 1,970 of 5,140 for

file comparison api

(0.05 sec)
  1. How to Sign RTF with Stamp Signature using Java

    This article is here to assist you to sign RTF with stamp signature using Java. Additionally, we will furnish you with a code example to embed stamp signature into RTF using Java....Find Answers by API GroupDocs.Total Product Family GroupDocs...Product Family GroupDocs.Comparison Product Family GroupDocs...

    kb.groupdocs.com/signature/java/how-to-sign-rtf...
  2. Render EML as HTML using C#

    In this topic, we will guide you how to render EML as HTML using C# without installing extra software. Also, a C# code for rendering EML to HTML will be provided....Find Answers by API GroupDocs.Total Product Family GroupDocs...Product Family GroupDocs.Comparison Product Family GroupDocs...

    kb.groupdocs.com/viewer/net/render-eml-as-html-...
  3. Set document metadata on save | Documentation

    Follow this guide and learn how to set document metadata when saving output document after Files Comparison within your Java applications....Comparison Product Solution GroupDocs...Upgrade an Order Support Docs API Reference Live Demos Free Support...

    docs.groupdocs.com/comparison/java/set-document...
  4. Categories

    Find Answers by Api GroupDocs.Total Product Family GroupDocs.Conversion Product Family GroupDocs.Annotation Product F......Find Answers by API GroupDocs.Total Product Family GroupDocs...Product Family GroupDocs.Comparison Product Family GroupDocs...

    kb.groupdocs.com/categories/page/33/
  5. Detect encoding | Documentation

    This article explains that how to detect encoding of a plain text File in java....Comparison Product Solution GroupDocs...Upgrade an Order Support Docs API Reference Live Demos Free Support...

    docs.groupdocs.com/parser/java/detect-encoding/
  6. Extracting common image information | Documenta...

    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:...Comparison Product Solution GroupDocs...Upgrade an Order Support Docs API Reference Live Demos Free Support...

    docs.groupdocs.com/metadata/java/extracting-com...
  7. Cache results | Documentation

    Caching rendering results in GroupDocs.Viewer for Python applications to improve performance....Comparison Product Solution GroupDocs...Upgrade an Order Support Docs API Reference Live Demos Free Support...

    docs.groupdocs.com/viewer/python-net/caching-re...
  8. Saving documents | Documentation

    Saving a document with method Save(), GroupDocs.Watermark puts it in the same folder as the original File, rewriting original. If you need to save the document to any custom location, you’ll have to use Save(string) method or Save(Stream) of Watermarker class. You can see examples of Save methods in one of these guides: Save document to the same File or stream Save document to the specified location Save document to the specified stream...Comparison Product Solution GroupDocs...Upgrade an Order Support Docs API Reference Live Demos Free Support...

    docs.groupdocs.com/watermark/net/saving-documents/
  9. Working with metadata in MOV files | Documentation

    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....Comparison Product Solution GroupDocs...Upgrade an Order Support Docs API Reference Live Demos Free Support...

    docs.groupdocs.com/metadata/java/working-with-m...
  10. 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()); // ....Comparison Product Solution GroupDocs...Upgrade an Order Support Docs API Reference Live Demos Free Support...

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