Sort Score
Result 10 results
Languages All
Labels All
Results 2,721 - 2,730 of 5,277 for

file signature

(0.05 sec)
  1. Save output to a stream | GroupDocs

    This article shows how to save output to a stream when rendering a document...Signature Product Solution GroupDocs...instantiate and release the output file streams. defines methods to...

    docs.groupdocs.com/viewer/java/save-output-to-s...
  2. Render XLSX as PNG using Python

    Learn how to render XLSX as PNG using Python. This tutorial explains how to convert XLSX to PNG in Python for visual representation....Signature Product Family GroupDocs.Metadata...document rendering Open the XLSX file using the Viewer class within...

    kb.groupdocs.com/viewer/python/render-xlsx-as-p...
  3. Create PDF with Image Redaction | GroupDocs

    This article shows how to redact the pages of a document as images, redacting entire areas of the page instead or in addition to a specific text....Signature Product Solution GroupDocs...save it as a rasterized PDF file (containing images of the original...

    docs.groupdocs.com/redaction/python-net/create-...
  4. Set password for output document | GroupDocs

    This article explains how to set document password after Files comparison within your Python applications using GroupDocs.Comparison for Python via .NET....Signature Product Solution GroupDocs...( output_file_path , source_file_path , target_file_path ): try...

    docs.groupdocs.com/comparison/python-net/set-pa...
  5. Add resource redaction annotation | GroupDocs

    The page describes how to add resource redaction annotation to a document using GroupDocs.Annotation for Java....Signature Product Solution GroupDocs...// Add annotation and save to file annotator . add ( resourcesRedaction...

    docs.groupdocs.com/annotation/java/add-resource...
  6. Add point annotation | GroupDocs

    The page describes how to add point annotation to a document using GroupDocs.Annotation for Java....Signature Product Solution GroupDocs...// Add annotation and save to file annotator . add ( point ); annotator...

    docs.groupdocs.com/annotation/java/add-point-an...
  7. Rasterize document or page | GroupDocs

    The watermark can be removed from the PDF documents using third-party tools. However, if you want to remove a watermark that is almost impossible to remove, you can rasterize pdf documents. GroupDocs.Watermark provides the feature to convert all the pages of a PDF document to raster images with only one line of code....Signature Product Solution GroupDocs...the size of the resultant PDF file. Rasterize particular page of...

    docs.groupdocs.com/watermark/net/rasterize-docu...
  8. How to Convert DOCX to PPTX using C#

    You can find the directions to convert docx to pptx using C# in this topic. Moreover, we will help you to write an application to export docx to pptx in C#....Signature Product Family GroupDocs.Metadata...convert Word documents to other file formats that are supported....

    kb.groupdocs.com/conversion/net/how-to-convert-...
  9. Render EML as PNG using Python

    Learn how to render EML as PNG using Python. This tutorial explains how to convert EML to PNG in Python with custom dimensions for email visualization....Signature Product Family GroupDocs.Metadata...EML as PNG using Python Email files in .eml format store detailed...

    kb.groupdocs.com/viewer/python/render-eml-as-pn...
  10. Getting known property descriptors | GroupDocs

    This code snippet demonstrates how to extract information about known properties that can be encountered in a particular package. Load a File to examine Get a collection of PropertyDescriptor instances for any desired metadata package Iterate through the extracted descriptors advanced_usage.GettingKnownPropertyDescriptors try (Metadata metadata = new Metadata(Constants.InputDoc)) { WordProcessingRootPackage root = metadata.getRootPackageGeneric(); for (PropertyDescriptor descriptor : root.getDocumentProperties().getKnowPropertyDescriptors()) { System.out.println(descriptor.getName()); System.out.println(descriptor.getType()); System.out.println(descriptor.getAccessLevel()); for (PropertyTag tag : descriptor.getTags()) { System.out.println(tag); } System.out.println(); } } Note Not all possible properties are presented in the getKnowPropertyDescriptors collection....Signature Product Solution GroupDocs...encountered in a particular package. a file to examine Get a collection...

    docs.groupdocs.com/metadata/java/getting-known-...