Sort Score
Result 10 results
Languages All
Labels All
Results 641 - 650 of 1,012 for

printing annotations

(0.07 sec)
  1. Sign documents with encrypted QR-code text | Do...

    This article explains how to create encrypted QR-code electronic signature with GroupDocs.Signature API...Annotation Product Solution GroupDocs...analyzing result System . out . print ( "List of newly created signatures:"...

    docs.groupdocs.com/signature/java/sign-document...
  2. Reverse image search | Documentation

    This article gives knowledge about the reverse image search, which makes it possible to search for similar images in ZIP archives, various documents, and individual files....Annotation Product Solution GroupDocs...imageSearchOptions ); System . out . print ( "Images found: " + result...

    docs.groupdocs.com/search/java/reverse-image-se...
  3. eSign document with QR-code signature | Documen...

    This article explains how sign documents with electronic signature as QR code on document page with GroupDocs.Signature API....Annotation Product Solution GroupDocs...for tickets sold online and printed out by customers or displayed...

    docs.groupdocs.com/signature/java/esign-documen...
  4. Free Support Forum - groupdocs.com

    Get FREE technical support for GroupDocs APIs from our developers using free support forum....returned to browser on clicking Print button GroupDocs.Viewer Product...December 23, 2024 Unable to print all pages of large documents...

    forum.groupdocs.com/latest
  5. Locating signature with stretch mode | Document...

     This article explains how to use stretch mode values to adjust signature area positions on document page with GroupDocs.Signature API....Annotation Product Solution GroupDocs...analyzing result System . out . print ( "List of newly created signatures:"...

    docs.groupdocs.com/signature/java/locating-sign...
  6. Extract tables from Microsoft Office Word docum...

    This article explains that how to extract tables from Microsoft Office Word (.doc, .docx) documents...Annotation Product Solution GroupDocs...reader . Name == "td" ); // Print the cell value if this is the...

    docs.groupdocs.com/parser/net/extract-tables-fr...
  7. Perform Reverse Image Search using C#

    Efficiently perform reverse image search using C# to find similar images. Learn how to implement reverse image search in C# for content-based image retrieval....Annotation Product Family GroupDocs...through the search results and print the details of each found image...

    kb.groupdocs.com/search/net/perform-reverse-ima...
  8. How to Render PDF as PNG using Java

    Within this article, you'll discover how to render PDF as PNG using Java. By following our detailed instructions, you can seamlessly convert PDF to PNG....Annotation Product Family GroupDocs...easy to share, and they retain print-ready quality, ensuring your...

    kb.groupdocs.com/viewer/java/how-to-render-pdf-...
  9. 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....Annotation Product Solution GroupDocs...= parser . getText ()) { // Print a text from the document //...

    docs.groupdocs.com/parser/java/load-document-fr...
  10. Load document from local disk | Documentation

    GroupDocs.Parser provides the functionality to extract data from documents on the local disk. The following example shows how to load the document from the local disk: // Set the filePath String filePath = Constants.SamplePdf; // Create an instance of Parser class with the filePath try (Parser parser = new Parser(filePath)) { // Extract a text into the reader try (TextReader reader = parser.getText()) { // Print a text from the document // If text extraction isn't supported, a reader is null System....Annotation Product Solution GroupDocs...= parser . getText ()) { // Print a text from the document //...

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