Sort Score
Result 10 results
Languages All
Labels All
Results 441 - 450 of 5,499 for

file signature

(0.24 sec)
  1. Load file from stream | GroupDocs

    This article explains how to load PDF, Word, Excel, PowerPoint documents from stream when using GroupDocs.Comparison for Java....Signature Product Solution GroupDocs.../ Loading / Load file from stream Load file from stream Leave...

    docs.groupdocs.com/comparison/java/load-file-fr...
  2. Optimize spreadsheets in a PDF file | GroupDocs

    This topic describes how to optimize spreadsheets in a PDF File using the GroupDocs.Viewer Java API....Signature Product Solution GroupDocs...output PDF file / Optimize spreadsheets in a PDF file Optimize...

    docs.groupdocs.com/viewer/java/optimization-pdf...
  3. Issue with Email to Pdf - text does not respect...

    We have two separate issues with converting .eml to .pdf. We were able to reproduce both in one email. Attached you will find the .eml File, the output .pdf and an image taken from within the viewer. Bad Signature PDF…...eml file, the output .pdf and an image...from within the viewer. Bad Signature PDF.pdf (385.0 KB) Viewer...

    forum.groupdocs.com/t/issue-with-email-to-pdf-t...
  4. GroupDocs Blog

    GroupDocs Blog - GroupDocs Blog | Document Automation Solutions for .NET & Java Developers...supports rendering of VSTX and VSSX file formats. The latest version...adjustment options for CAD files, removing annotation when rendering...

    blog.groupdocs.com/groupdocs.blog/page/79/
  5. Get supported file formats | GroupDocs

    This page describes how to obtain supported File formats list when annotate documents and images with GroupDocs.Annotation within your .NET applications....Signature Product Solution GroupDocs...Get supported file formats Get supported file formats Leave feedback...

    docs.groupdocs.com/annotation/java/get-supporte...
  6. Load Password-Protected File | GroupDocs

    Learn how to load and convert password-protected documents using the GroupDocs.Conversion for Python via .NET API, enabling seamless handling of secured Files....Signature Product Solution GroupDocs...Password-Protected File Load Password-Protected File Leave feedback...

    docs.groupdocs.com/conversion/python-net/develo...
  7. Optimize spreadsheets in a PDF file | GroupDocs

    This topic describes how to optimize spreadsheets in a PDF File using the GroupDocs.Viewer .NET API (C#)....Signature Product Solution GroupDocs...output PDF file / Optimize spreadsheets in a PDF file Optimize...

    docs.groupdocs.com/viewer/net/optimization-pdf-...
  8. Save overwriting original file | GroupDocs

    The following example demonstrates how to save the redacted document, replacing an original File: // Make a copy of sample File Files.copy(new File("Sample.docx").toPath(), new File("OverwrittenSample.docx").toPath(), StandardCopyOption.REPLACE_EXISTING); // Apply redaction final Redactor redactor = new Redactor("OverwrittenSample.docx"); try { RedactorChangeLog result = redactor.apply(new ExactPhraseRedaction("John Doe", new ReplacementOptions(java.awt.Color.RED))); if (result.getStatus() != RedactionStatus.Failed) { SaveOptions options = new SaveOptions(); options.setAddSuffix(false); options.setRasterizeToPDF(false); // Save the document in original format overwriting original File redactor.save(options); } } finally { redactor....Signature Product Solution GroupDocs...overwriting original file Save overwriting original file Leave feedback...

    docs.groupdocs.com/redaction/java/save-overwrit...
  9. Save overwriting original file | GroupDocs

    This article demonstrates that how to save the redacted document, replacing an original File...Signature Product Solution GroupDocs...overwriting original file Save overwriting original file Leave feedback...

    docs.groupdocs.com/redaction/net/save-overwriti...
  10. Get supported file formats | GroupDocs

    The getSupportedFileTypes method of the FileType class is used to obtain a list of supported File types. An example of obtaining a list of supported File types is presented below. Iterable<FileType> supportedFileTypes = FileType.getSupportedFileTypes(); Iterator iterator = supportedFileTypes.iterator(); while (iterator.hasNext()) { FileType FileType = (FileType)iterator.next(); System.out.println(FileType.getExtension() + " - " + FileType.getDescription()); } More resources Advanced usage topics To learn more about library features and get familiar how to manage metadata and more, please refer to theadvanced usage section....Signature Product Solution GroupDocs...Get supported file formats Get supported file formats Leave feedback...

    docs.groupdocs.com/metadata/java/get-supported-...