Sort Score
Result 10 results
Languages All
Labels All
Results 1,131 - 1,140 of 1,730 for

pdf image comparison

(0.16 sec)
  1. Introduction | GroupDocs

    This is an introduction into edit document techniques explanation like main stages of document opening, editing and saving results within Java applications....Comparison Product Solution GroupDocs...different options, stylesheets, images, fonts, save HTML-document...

    docs.groupdocs.com/editor/java/introduction/
  2. Set metadata properties | GroupDocs

    This article explains the usage of SetProperties method is used to update or add metadata. You can easily add metadata to photos, Pdfs or you can update or add data to mp3 files....Comparison Product Solution GroupDocs...easily add metadata to photos, pdfs or you can update or add data...

    docs.groupdocs.com/metadata/net/set-metadata-pr...
  3. Adding metadata | GroupDocs

    This article shows how to add metadata properties which is the most sophisticated feature of the GroupDocs.Metadata Java search engine...Comparison Product Solution GroupDocs...metadata of PDF, DOC, DOCX, PPT, PPTX, XLS, XLSX, emails, images and...

    docs.groupdocs.com/metadata/java/adding-metadata/
  4. Load Markup document with options | GroupDocs

    Learn this article and check how to load and convert HTML documents with advanced options using GroupDocs.Conversion for Java API....Comparison Product Solution GroupDocs...conversion to formats such as PDF, DOCX, or PNG. The library ensures...

    docs.groupdocs.com/conversion/java/load-markup-...
  5. Remove metadata properties | GroupDocs

    This article shows that how to remove metadata properties from a file is to use corresponding tags that allow you to locate the desired properties across all metadata packages....Comparison Product Solution GroupDocs...metadata of PDF, DOC, DOCX, PPT, PPTX, XLS, XLSX, emails, images and...

    docs.groupdocs.com/metadata/net/remove-metadata...
  6. Locating signature with stretch mode | GroupDocs

     This article explains how to use stretch mode values to adjust signature area positions on document page with GroupDocs.Signature API....Comparison Product Solution GroupDocs...stretch mode with adding text or images signatures into document with...

    docs.groupdocs.com/signature/java/locating-sign...
  7. 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...Comparison Product Solution GroupDocs...metadata of PDF, DOC, DOCX, PPT, PPTX, XLS, XLSX, emails, images and...

    docs.groupdocs.com/metadata/java/working-with-z...
  8. Working with metadata in AVI files | GroupDocs

    Reading AVI header properties The GroupDocs.Metadata API supports extracting format-specific information from AVI file headers. The following are the steps to read the header of an AVI file. Load an AVI video Get the root metadata package Extract the native metadata package using the AviRootPackage.getHeader method Read the AVI header properties advanced_usage.managing_metadata_for_specific_formats.video.avi.AviReadHeaderProperties try (Metadata metadata = new Metadata(Constants.InputAvi)) { AviRootPackage root = metadata.getRootPackageGeneric(); System.out.println(root.getHeader().getAviHeaderFlags()); System.out.println(root.getHeader().getHeight()); System.out.println(root.getHeader().getWidth()); System.out.println(root.getHeader().getTotalFrames()); System.out.println(root.getHeader().getInitialFrames()); System.out.println(root.getHeader().getMaxBytesPerSec()); System....Comparison Product Solution GroupDocs...metadata of PDF, DOC, DOCX, PPT, PPTX, XLS, XLSX, emails, images and...

    docs.groupdocs.com/metadata/java/working-with-m...
  9. Getting all used fonts in the loaded document |...

    Getting metadata and binary content of all fonts, used in the document, loaded to the GroupDocs.Viewer for Java...Comparison Product Solution GroupDocs...BoldItalic . Need to mention that PDF documents use only the fonts...

    docs.groupdocs.com/viewer/java/getting-used-fonts/
  10. Working with CAD metadata | GroupDocs

    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.CadPackage property. The following code snippet reads metadata associated with a CAD file. AdvancedUsage.ManagingMetadataForSpecificFormats.Cad.CadReadNativeMetadataProperties using (Metadata metadata = new Metadata(Constants.InputDxf)) { var root = metadata.GetRootPackage(); Console.WriteLine(root.CadPackage.AcadVersion); Console.WriteLine(root.CadPackage.Author); Console.WriteLine(root.CadPackage.Comments); Console.WriteLine(root.CadPackage.CreatedDateTime); Console.WriteLine(root.CadPackage.HyperlinkBase); Console.WriteLine(root.CadPackage.Keywords); Console.WriteLine(root.CadPackage.LastSavedBy); Console.WriteLine(root.CadPackage.Title); // ....Comparison Product Solution GroupDocs...metadata of PDF, DOC, DOCX, PPT, PPTX, XLS, XLSX, emails, images and...

    docs.groupdocs.com/metadata/net/working-with-ca...