Sort Score
Result 10 results
Languages All
Labels All
Results 2,551 - 2,560 of 6,532 for

file comparison

(0.09 sec)
  1. Extract Text from EPUB using C#

    This article provides a detailed guide on how to extract text from EPUB using C#. It includes a code example to assist you for text extraction from EPUB in C#....Comparison Product Family GroupDocs...C# Extracting text from EPUB files can be an essential task for...

    kb.groupdocs.com/parser/net/extract-text-from-e...
  2. Remove Metadata from ODT using Java

    Discover how to effectively remove metadata from ODT using Java. This guide provides a code snippet showing the process of how to delete metadata from ODT in Java....Comparison Product Family GroupDocs...Open Document Text ( ODT ) files, frequently utilized with word...

    kb.groupdocs.com/metadata/java/remove-metadata-...
  3. Extract Text from XLS using Java

    This article explains how to extract text from XLS using Java. It features code example to help you for text extraction from XLS in Java without installing extra software....Comparison Product Family GroupDocs...extracting text from Excel ( XLS ) files is a common task. Excel is often...

    kb.groupdocs.com/parser/java/extract-text-from-...
  4. Scan Barcode from DOC using C#

    Learn how to scan barcode from DOC using C#. With the help of this guide, you will learn how to extract barcode from DOC in C# efficiently without using extra tools....Comparison Product Family GroupDocs...use in DOC (Word Document) files is becoming increasingly common...

    kb.groupdocs.com/parser/net/scan-barcode-from-d...
  5. Redact Text in PDF using C#

    In this tutorial, you will discover how to redact text in PDF using C#. Additionally, you will receive a simple code example to replace text in PDF using C#....Comparison Product Family GroupDocs...by providing the file path of the PDF file as an argument to...

    kb.groupdocs.com/redaction/net/redact-text-in-p...
  6. Convert DOCX to JPG using Python

    Discover how to convert DOCX to JPG using Python with clear steps and code example. Effortlessly export DOCX to JPG using Python for high-quality image results....Comparison Product Family GroupDocs...classes required to convert DOCX files to JPG images efficiently in...

    kb.groupdocs.com/conversion/python/convert-docx...
  7. Working with BMP metadata | GroupDocs

    Reading BMP header properties The GroupDocs.Metadata API supports extracting format-specific information from BMP File headers. The following are the steps to read the header of a BMP File. Load a BMP image Get the root metadata package Extract the native metadata package using BmpRootPackage.BmpHeader Read the BMP header properties AdvancedUsage.ManagingMetadataForSpecificFormats.Image.Bmp.BmpReadHeaderProperties using (Metadata metadata = new Metadata(Constants.InputBmp)) { var root = metadata.GetRootPackage(); Console.WriteLine(root.BmpHeader.BitsPerPixel); Console.WriteLine(root.BmpHeader.ColorsImportant); Console.WriteLine(root.BmpHeader.HeaderSize); Console.WriteLine(root.BmpHeader.ImageSize); Console.WriteLine(root.BmpHeader.Planes); } 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...format-specific information from BMP file headers. The following are the...

    docs.groupdocs.com/metadata/net/working-with-bm...
  8. Add document to Spreadsheet via OLE | GroupDocs

    This article explains how to add document to Spreadsheet via OLE with GroupDocs.Merger within your .Java applications....Comparison Product Solution GroupDocs...Initialise class with embedded file path and page number; Instantiate...

    docs.groupdocs.com/merger/java/add-document-to-...
  9. Working with BMP metadata | GroupDocs

    Reading BMP header properties The GroupDocs.Metadata API supports extracting format-specific information from BMP File headers. The following are the steps to read the header of a BMP File. Load a BMP image Get the root metadata package Extract the native metadata package using the BmpRootPackage.getBmpHeader method Read the BMP header properties advanced_usage.managing_metadata_for_specific_formats.image.bmp.BmpReadHeaderProperties try (Metadata metadata = new Metadata(Constants.InputBmp)) { BmpRootPackage root = metadata.getRootPackageGeneric(); System.out.println(root.getBmpHeader().getBitsPerPixel()); System.out.println(root.getBmpHeader().getColorsImportant()); System.out.println(root.getBmpHeader().getHeaderSize()); System.out.println(root.getBmpHeader().getImageSize()); System.out.println(root.getBmpHeader().getPlanes()); } 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...format-specific information from BMP file headers. The following are the...

    docs.groupdocs.com/metadata/java/working-with-b...
  10. Load document from stream | GroupDocs

    Load documents directly from a File-like object — open File handle, BytesIO, or any stream — with GroupDocs.Viewer for Python via .NET....Comparison Product Solution GroupDocs...stream without saving it as a file on a disk. You can use this...

    docs.groupdocs.com/viewer/python-net/developer-...