Sort Score
Result 10 results
Languages All
Labels All
Results 581 - 590 of 1,724 for

errores pdf

(0.04 sec)
  1. GroupDocs.Comparison for .NET | Documentation

    GroupDocs.Compairson for .NET developer documentation. Learn how to diff docx, pptx, and compare Pdf files using C#....PowerPoint, OpenDocument ODT, PDF, Text, and HTML documents. The...prompt, please hold on... An error occurred while retrieving the...

    docs.groupdocs.com/comparison/net/
  2. Load from a stream | Documentation

    This example demonstrates how to load a file from a stream. advanced_usage.loading_files.LoadFromStream // Constants.InputDoc is an absolute or relative path to your document. Ex: @"C:\Docs\source.doc" try (InputStream stream = new FileInputStream(Constants.InputDoc)) { try (Metadata metadata = new Metadata(stream)) { // Extract, edit or remove metadata here } } More resources GitHub examples You may easily run the code above and see the feature in action in our GitHub examples: GroupDocs.Metadata for ....to view and edit metadata of PDF, DOC, DOCX, PPT, PPTX, XLS, XLSX...prompt, please hold on... An error occurred while retrieving the...

    docs.groupdocs.com/metadata/java/load-from-a-st...
  3. Save a modified file to a stream | Documentation

    This article shows how to save a file to the specified stream in Java...to view and edit metadata of PDF, DOC, DOCX, PPT, PPTX, XLS, XLSX...prompt, please hold on... An error occurred while retrieving the...

    docs.groupdocs.com/metadata/java/save-a-modifie...
  4. Load document from local disk | Documentation

    This section explains how to load document from local disk with GroupDocs.Signature API.... You are welcome to eSign PDF, Word, Excel, PowerPoint documents...prompt, please hold on... An error occurred while retrieving the...

    docs.groupdocs.com/signature/java/load-document...
  5. Save overwriting original file | Documentation

    This article demonstrates that how to save the redacted document, replacing an original file...various document formats like PDF, DOC, DOCX, PPT, PPTX, XLS, XLSX...prompt, please hold on... An error occurred while retrieving the...

    docs.groupdocs.com/redaction/net/save-overwriti...
  6. Load document from url | Documentation

    Learn how to Load document from url....documents and extract data from PDF, DOC, DOCX, PPT, PPTX, XLS, XLSX...prompt, please hold on... An error occurred while retrieving the...

    docs.groupdocs.com/parser/net/load-document-fro...
  7. Exporting metadata properties | Documentation

    This article provides the knowledge that how to export metadata properties to an Excel workbook in Java...to view and edit metadata of PDF, DOC, DOCX, PPT, PPTX, XLS, XLSX...prompt, please hold on... An error occurred while retrieving the...

    docs.groupdocs.com/metadata/java/exporting-meta...
  8. Get supported file formats | Documentation

    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 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....to view and edit metadata of PDF, DOC, DOCX, PPT, PPTX, XLS, XLSX...prompt, please hold on... An error occurred while retrieving the...

    docs.groupdocs.com/metadata/java/get-supported-...
  9. Exporting metadata properties | Documentation

    This article provides the knowledge that how to export metadata properties to an Excel workbook....to view and edit metadata of PDF, DOC, DOCX, PPT, PPTX, XLS, XLSX...prompt, please hold on... An error occurred while retrieving the...

    docs.groupdocs.com/metadata/net/exporting-metad...
  10. Load a file of a specific format | Documentation

    This example demonstrates how to load a file of some particular format. advanced_usage.loading_files.LoadingFileOfSpecificFormat // Explicitly specifying the format of a file to load you can spare some time on detecting the format LoadOptions loadOptions = new LoadOptions(FileFormat.Spreadsheet); // Constants.InputXls is an absolute or relative path to your document. Ex: @"C:\Docs\source.xls" try (Metadata metadata = new Metadata(Constants.InputXls, loadOptions)) { SpreadsheetRootPackage root = metadata.getRootPackageGeneric(); // Use format-specific properties to extract or edit metadata System....to view and edit metadata of PDF, DOC, DOCX, PPT, PPTX, XLS, XLSX...prompt, please hold on... An error occurred while retrieving the...

    docs.groupdocs.com/metadata/java/load-a-file-of...