Sort Score
Result 10 results
Languages All
Labels All
Results 3,271 - 3,280 of 18,817 for

docx

(0.03 sec)
  1. Plain text | Documentation

    This article explains that how to extract plain formatted text from document page in Java....extract data from PDF, DOC, DOCX, PPT, PPTX, XLS, XLSX, Emails...

    docs.groupdocs.com/parser/java/plain-text/
  2. Numeric range search | Documentation

    This article gives the knowledge about numeric range search which allows you to search in documents any integer numbers in the range from 0 to 9223372036854775807 (Int64.MaxValue)....to search over your PDF, DOC, DOCX, PPT, PPTX, XLS, XLSX and more...

    docs.groupdocs.com/search/net/numeric-range-sea...
  3. Synonym search | Documentation

    This article shows that how synonym search allows you to find not only the words specified in the search query, but also the synonyms, words that means the same....to search over your PDF, DOC, DOCX, PPT, PPTX, XLS, XLSX and more...

    docs.groupdocs.com/search/nodejs-java/synonym-s...
  4. 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:...and edit metadata of PDF, DOC, DOCX, PPT, PPTX, XLS, XLSX, emails...

    docs.groupdocs.com/metadata/java/extracting-com...
  5. 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 .NET...below shows loading the sample DOCX document to the class, and then...const string filename = "sample.docx" ; string inputPath = "\full\path\"...

    docs.groupdocs.com/viewer/net/getting-used-fonts/
  6. Metadata redactions | Documentation

    This article shows that how C# redaction API allows you to replace or remove metadata using filters or search by regular expression....different formats like PDF, DOC, DOCX, PPT, PPTX, XLS, XLSX and others...new Redactor ( @ "C:\sample.docx" )) import groupdocs.redaction...

    docs.groupdocs.com/redaction/python-net/metadat...
  7. Add Watermark to a Batch of Documents and Image...

    Watermarking is a popular technique to indicate that the content or data inside a document is copyrighted. On the other hand, it is also used to place the company’s logo or some kind of label in the documents before they are shared within or outside the company. However, it is quite hard to apply the watermark to a bunch of documents one by one. It becomes harder if you have documents of various formats such as PDF, Docx, PPTX, XLSX, EML, JPG, PNG, etc....various formats such as PDF, DOCX, PPTX, XLSX, EML, JPG, PNG,...

    blog.groupdocs.com/watermark/add-watermark-to-a...
  8. How to Extract Text from PDF in C#

    This short article provides the procedure to extract text from PDF in C# and how to use this stepwise guide to write code to extract text from PDF using C#....other documents such as DOC, DOCX, XLS, XLSX, PPTX, MSG, XML,...

    kb.groupdocs.com/parser/net/how-to-extract-text...
  9. Extract Text from Markdown Files using C# | Mar...

    Extract Text from Markdown Files using C#. Parser the mardown files within .NET applications using document parser API by GroupDocs....word-processing documents (DOC, DOCX, …), spreadsheets (XLS, XLSX...

    blog.groupdocs.com/parser/extract-text-from-mar...
  10. Load document from stream | Documentation

    There might be cases when the document is presented only as a stream (without a copy on the local disk). To avoid the overhead of saving documents to the disk, GroupDocs.Parser enables to extract data from streams directly. The following example shows how to load the document from the stream: // Create the stream try (InputStream stream = new FileInputStream(Constants.SamplePdf)) { // Create an instance of Parser class with the stream try (Parser parser = new Parser(stream)) { // Extract a text into the reader try (TextReader reader = parser....extract data from PDF, DOC, DOCX, PPT, PPTX, XLS, XLSX, Emails...

    docs.groupdocs.com/parser/java/load-document-fr...