Sort Score
Result 10 results
Languages All
Labels All
Results 5,191 - 5,200 of 9,559 for

groupdocs.viewer,

(0.17 sec)
  1. Adding watermarks | Documentation

    Adding watermark to any supported document format using GroupDocs.Watermark consists of some easy steps...Adding watermark to any supported document format using GroupDocs.Watermark consists of some easy steps

    docs.groupdocs.com/watermark/net/adding-waterma...
  2. Basic usage | Documentation

    Quick Start section about main features of GroupDocs.Conversion API, describes how to convert files with just couple lines of code....Quick Start section about main features of GroupDocs.Conversion API, describes how to convert files with just couple lines of code.

    docs.groupdocs.com/conversion/net/basic-usage/
  3. Barcode Image Generation in Word Processing Doc...

    Note The code uses some of the objects defined in The Business Layer. Barcode Generation in Microsoft Word Template Syntax Add a textbox to your template at the place where you want a barcode image to be inserted. Add the following syntax: <> Download Template Get the template from here. Barcode.docx The Code...Note The code uses some of the objects defined in The Business Layer. Barcode Generation in Microsoft Word Template Syntax Add a textbox to your template at the place where you want a barcode image to be inserted. Add the following syntax: <<barcode [value] -itf6>> Download Template Get the template from here. Barcode.docx The Code

    docs.groupdocs.com/assembly/java/barcode-image-...
  4. Single document operations | Documentation

    Learn how to move document pages, remove document pages, split document into separate pages, swap document pages positions, extract specific pages from document, change page orientation and rotate page using GroupDocs.Merger for Java....Learn how to move document pages, remove document pages, split document into separate pages, swap document pages positions, extract specific pages from document, change page orientation and rotate page using GroupDocs.Merger for Java.

    docs.groupdocs.com/merger/java/single-document-...
  5. Load document from local disk | Documentation

    This article explains how to load PDF, Word, Excel, PowerPoint documents from local disk when using GroupDocs.Merger for Java....This article explains how to load PDF, Word, Excel, PowerPoint documents from local disk when using GroupDocs.Merger for Java.

    docs.groupdocs.com/merger/java/load-document-fr...
  6. Loading documents from different sources | Docu...

    Following this guide you will learn how to load PDF, Word, Excel, PowerPoint documents by local file path, stream or URL for further processing with GroupDocs.Merger for Java API....Following this guide you will learn how to load PDF, Word, Excel, PowerPoint documents by local file path, stream or URL for further processing with GroupDocs.Merger for Java API.

    docs.groupdocs.com/merger/java/loading-document...
  7. GroupDocs.Parser for .NET | Documentation

    A convenient text extractor API that permits users to extract raw or formatted text from different document formats. Besides, it is not only a text extractor API, the user can extract metadata from the document as well....A convenient text extractor API that permits users to extract raw or formatted text from different document formats. Besides, it is not only a text extractor API, the user can extract metadata from the document as well.

    docs.groupdocs.com/parser/net/
  8. GroupDocs.Classification for .NET | Documentation

    Home Note Welcome to the GroupDocs.Classification for .NET GroupDocs.Classification for .NET is a powerful and intuitive library used for texts and documents classification with several taxonomies. Documents could be in various formats,including Microsoft Word and OpenDocument Writer file formats, PDF documents, RTF and TXT. Classification results can be easily customized with multiple and flexible options. GroupDocs.Classification for .NET Resources Following are the links to some useful resources you may need to accomplish your tasks....Home Note Welcome to the GroupDocs.Classification for .NET GroupDocs.Classification for .NET is a powerful and intuitive library used for texts and documents classification with several taxonomies. Documents could be in various formats,including Microsoft Word and OpenDocument Writer file formats, PDF documents, RTF and TXT. Classification results can be easily customized with multiple and flexible options. GroupDocs.Classification for .NET Resources Following are the links to some useful resources you may need to accomplish your tasks.

    docs.groupdocs.com/classification/net/
  9. Using OCR to extract a text from images and PDF...

    GroupDocs.Parser provides API to extract a text from image files and non-text PDFs documents. The following articles describe how to use API to extract data and integrate any paid or free OCR solution to GroupDocs.Parser....GroupDocs.Parser provides API to extract a text from image files and non-text PDFs documents. The following articles describe how to use API to extract data and integrate any paid or free OCR solution to GroupDocs.Parser.

    docs.groupdocs.com/parser/java/using-ocr/
  10. Load from Stream | Documentation

    Load from Stream As an alternative to a local file, Redactor can open a document from stream. The following example demonstrates how to load and redact a document using Stream: final FileInputStream stream = new FileInputStream("sample.docx"); try { final Redactor redactor = new Redactor(stream); try { // Here we can use document instance to make redactions redactor.apply(new DeleteAnnotationRedaction()); redactor.save(); } finally { redactor.close(); } } finally { stream.close(); }...Load from Stream As an alternative to a local file, Redactor can open a document from stream. The following example demonstrates how to load and redact a document using Stream: final FileInputStream stream = new FileInputStream("sample.docx"); try { final Redactor redactor = new Redactor(stream); try { // Here we can use document instance to make redactions redactor.apply(new DeleteAnnotationRedaction()); redactor.save(); } finally { redactor.close(); } } finally { stream.close(); }

    docs.groupdocs.com/redaction/java/load-from-str...