Sort Score
Result 10 results
Languages All
Labels All
Results 3,181 - 3,190 of 19,312 for

pdf signature

(0.33 sec)
  1. Add document to Word processing via OLE | Group...

    This article explains how to add document to Word processing via OLE with GroupDocs.Merger within your Java applications....Signature Product Solution GroupDocs...sample demonstrates how to embed PDF file into DOCX document as OLE...

    docs.groupdocs.com/merger/java/add-document-to-...
  2. Render XLSX as HTML using Python

    Learn how to render XLSX as HTML using Python. This tutorial also explains how to convert XLSX to HTML in Python for browser-based viewing....Signature Product Family GroupDocs.Metadata...comprehensive tutorial on how to render PDF as HTML using Python and unlock...

    kb.groupdocs.com/viewer/python/render-xlsx-as-h...
  3. How to Convert XML to CSV in C#

    This short article briefly explains the process to convert XML to CSV in C#. Review sample code to convert XML to CSV using C# and use it as a template for projects....Signature Product Family GroupDocs.Metadata...an article on how to convert PDF to Excel using C# ; take a look...

    kb.groupdocs.com/conversion/net/how-to-convert-...
  4. How to Convert HTML to Word using C#

    This short tutorial explains to you how to convert HTML to Word using C# without any third-party tool and how to use this guide to convert HTML to Word in C#....Signature Product Family GroupDocs.Metadata...other document formats such as PDF, RTF, PNG, XLSX, PSD, and many...

    kb.groupdocs.com/conversion/net/how-to-convert-...
  5. Add squiggly annotation | GroupDocs

    The page describes how to add squiggly annotation to a document using GroupDocs.Annotation for .NET....Signature Product Solution GroupDocs...annotator = new Annotator ( "input.pdf" )) { SquigglyAnnotation squiggly...

    docs.groupdocs.com/annotation/net/add-squiggly-...
  6. Getting documents in network | GroupDocs

    This page contains information about getting indexed documents in the search network....Signature Product Solution GroupDocs...welcome to search over your PDF, DOC, DOCX, PPT, PPTX, XLS, XLSX...

    docs.groupdocs.com/search/java/getting-document...
  7. Spelling corrector | GroupDocs

    This article gives the knowledge of the API methods which can be used to perform operations about spelling corrector using Java....Signature Product Solution GroupDocs...welcome to search over your PDF, DOC, DOCX, PPT, PPTX, XLS, XLSX...

    docs.groupdocs.com/search/java/spelling-corrector/
  8. Handling MPEG audio metadata | GroupDocs

    This article explains how the The GroupDocs.Metadata API allows reading some common MPEG audio properties from MP3 files....Signature Product Solution GroupDocs...to view and edit metadata of PDF, DOC, DOCX, PPT, PPTX, XLS, XLSX...

    docs.groupdocs.com/metadata/java/handling-mpeg-...
  9. Working with metadata in PNG images | GroupDocs

    Reading PNG metadata properties The GroupDocs.Metadata API supports extracting format-specific information from PNG images. The following are the steps to read the native PNG metadata. Load a PNG image Get the root metadata package Extract the native metadata package using PngRootPackage.getPngPackage Read the PNG metadata properties advanced_usage.managing_metadata_for_specific_formats.image.png.PngReadTextChunks try (Metadata metadata = new Metadata(Constants.InputPng)) { PngRootPackage root = metadata.getRootPackageGeneric(); for (PngTextChunk chunk : root.getPngPackage().getTextChunks()) { System.out.println(chunk.getKeyword()); System.out.println(chunk.getText()); if (chunk instanceof PngCompressedTextChunk) { PngCompressedTextChunk compressedChunk = (PngCompressedTextChunk) chunk; System....Signature Product Solution GroupDocs...to view and edit metadata of PDF, DOC, DOCX, PPT, PPTX, XLS, XLSX...

    docs.groupdocs.com/metadata/java/working-with-m...
  10. Clean metadata | GroupDocs

    Sometimes you may need to just remove all or clean metadata properties without applying any filters. The best way to do this is to use the Sanitize method....Signature Product Solution GroupDocs...document. Ex: @"C:\Docs\source.pdf" try ( Metadata metadata = new...

    docs.groupdocs.com/metadata/java/clean-metadata/