Sort Score
Result 10 results
Languages All
Labels All
Results 851 - 860 of 1,798 for

errores pdf

(0.28 sec)
  1. Verify Text signatures in the document | Docume...

    This topic explains how to verify Text electronic signatures with GroupDocs.Signature API....pdf" ); TextVerifyOptions options...Apps. You are welcome to eSign PDF, Word, Excel, PowerPoint documents...

    docs.groupdocs.com/signature/java/verify-text-s...
  2. Check if a file is encrypted | Documentation

    This article explains how to check if a file is encrypted using Java with GroupDocs.Viewer for Java....pdf" )) { FileInfo fileInfo = viewer...Portable Document Format File ( .pdf ) File encrypted: true To learn...

    docs.groupdocs.com/viewer/java/how-to-check-if-...
  3. How to search for Image signatures | Documentation

    This article explains how to search for Image electronic signatures with GroupDocs.Signature API....pdf" ; using ( Signature signature...powerful free online apps. To sign PDF, Word, Excel, PowerPoint, and...

    docs.groupdocs.com/signature/net/search-for-ima...
  4. .NET Standard 2.0 API Limitations | Documentation

    This section describes GroupDocs.Signature for .NET limitations when using under .NET Standard 2.0 environment...the document to PNG, JPG, and PDF. If GroupDocs.Signature for ...prompt, please hold on... An error occurred while retrieving the...

    docs.groupdocs.com/signature/net/net-standard-2...
  5. Extract data from Microsoft Office PowerPoint p...

    GroupDocs.Parser provides the functionality to extract data from Microsoft Office PowerPoint presentations. Both classic (ppt, pot) and Open XML (pptx, potx) formats are supported. Also LibreOffice Impress (OpenOffice.org Impress) formats are supported. The following table provides the list of supported formats: Format Description PPT Microsoft Office PowerPoint Presentation PPS Microsoft Office PowerPoint Slideshow POT Microsoft Office PowerPoint Template PPTX Microsoft Office Open XML Presentation PPTM Microsoft Office Open XML Macro-Enabled Presentation POTX Microsoft Office Open XML Presentation Template POTM Microsoft Office Open XML Macro-Enabled Presentation Template PPSX Microsoft Office Open XML Presentation Slideshow PPSM Microsoft Office Open XML Macro-Enabled Presentation Slideshow ODP Open Document Presentation OTP Open Document Presentation Template More resources GitHub examples You may easily run the code above and see the feature in action in our GitHub examples:...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/extract-data-from...
  6. Handling password required exception | Document...

    This article shows how to handle missing document password exception with GroupDocs.Signature API....pdf" ); try { QrCodeSignOptions options...Apps. You are welcome to eSign PDF, Word, Excel, PowerPoint documents...

    docs.groupdocs.com/signature/java/handling-pass...
  7. Handling password required exception | Document...

    This article shows how to handle missing document password exception with GroupDocs.Signature API....pdf" )) { try { QrCodeSignOptions...powerful free online apps. To sign PDF, Word, Excel, PowerPoint, and...

    docs.groupdocs.com/signature/net/handling-passw...
  8. HTML | Documentation

    This article explains that how to extract HTML formatted text from document page in Java....welcome to extract data from PDF, DOC, DOCX, PPT, PPTX, XLS, XLSX...prompt, please hold on... An error occurred while retrieving the...

    docs.groupdocs.com/parser/java/html/
  9. Working with metadata in GIF images | Documenta...

    Detecting the GIF version The following sample of code will help you to detect the version of a loaded GIF image and extract some additional file format information. Load a GIF image Extract the root metadata package Use the FileType property to obtain file format information AdvancedUsage.ManagingMetadataForSpecificFormats.Image.Gif.GifReadFileFormatProperties using (Metadata metadata = new Metadata(Constants.InputGif)) { var root = metadata.GetRootPackage(); Console.WriteLine(root.FileType.FileFormat); Console.WriteLine(root.FileType.Version); Console.WriteLine(root.FileType.ByteOrder); Console.WriteLine(root.FileType.MimeType); Console.WriteLine(root.FileType.Extension); Console.WriteLine(root.FileType.Width); Console.WriteLine(root.FileType.Height); } Working with XMP Metadata GroupDocs....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/working-with-me...
  10. Getting known property descriptors | Documentation

    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....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/getting-known-...