Sort Score
Result 10 results
Languages All
Labels All
Results 2,861 - 2,870 of 5,525 for

file conversion

(0.26 sec)
  1. 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....Conversion Product Solution GroupDocs...the size of the resultant PDF file. Rasterize particular page of...

    docs.groupdocs.com/watermark/net/rasterize-docu...
  2. Sign document with extensions | GroupDocs

    This article shows how to create electronic signatures with additional visual extensions...Conversion Product Solution GroupDocs... 10 )); // sign document to file signature . Sign ( "signed.pdf"...

    docs.groupdocs.com/signature/net/sign-document-...
  3. Working with metadata in PDF documents | GroupDocs

    Detecting the version of a PDF document The following sample of code will help you to detect the PDF version a loaded document and extract some additional File format information. Load a PDF document Extract the root metadata package Use the FileType property to obtain File format information AdvancedUsage.ManagingMetadataForSpecificFormats.Document.Pdf.PdfReadFileFormatProperties using (Metadata metadata = new Metadata(Constants.InputPdf)) { var root = metadata.GetRootPackage(); Console.WriteLine(root.FileType.FileFormat); Console.WriteLine(root.FileType.Version); Console.WriteLine(root.FileType.MimeType); Console.WriteLine(root.FileType.Extension); } Reading built-in metadata properties To access built-in metadata of a PDF document, please use the DocumentProperties property defined in the DocumentRootPackage class....Conversion Product Solution GroupDocs...and extract some additional file format information. a PDF document...

    docs.groupdocs.com/metadata/net/working-with-me...
  4. Working with metadata in PDF documents | GroupDocs

    Detecting the version of a PDF document The following sample of code will help you to detect the PDF version a loaded document and extract some additional File format information. Load a PDF document Extract the root metadata package Use the getPdfType method to obtain File format information advanced_usage.managing_metadata_for_specific_formats.document.pdf.PdfReadFileFormatProperties try (Metadata metadata = new Metadata(Constants.InputPdf)) { PdfRootPackage root = metadata.getRootPackageGeneric(); System.out.println(root.getPdfType().getFileFormat()); System.out.println(root.getPdfType().getVersion()); System.out.println(root.getPdfType().getMimeType()); System.out.println(root.getPdfType().getExtension()); } Reading built-in metadata properties To access built-in metadata of a PDF document, please use the getDocumentProperties method defined in the DocumentRootPackage class....Conversion Product Solution GroupDocs...and extract some additional file format information. a PDF document...

    docs.groupdocs.com/metadata/java/working-with-m...
  5. 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....Conversion Product Solution GroupDocs...encountered in a particular package. a file to examine Get a collection...

    docs.groupdocs.com/metadata/java/getting-known-...
  6. How to save PDF document with other format | Gr...

    This article explains how to save signed PDF document with various File formats by GroupDocs.Signature API....Conversion Product Solution GroupDocs...true }; // sign document to file signature . Sign ( "SignedPdf...

    docs.groupdocs.com/signature/net/save-signed-pd...
  7. 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 JavaScript const metadata = new groupdocs.metadata.Metadata("input.doc"); var root = metadata.getRootPackageGeneric(); var descriptors = root.getDocumentProperties().getKnowPropertyDescriptors(); for(var i=0;iConversion Product Solution GroupDocs...a particular package. Load a file to examine Get a collection...

    docs.groupdocs.com/metadata/nodejs-java/getting...
  8. Cache results | GroupDocs

    This article contains caching use-cases with GroupDocs.Viewer within your JavaScript applications....Conversion Product Solution GroupDocs...difference between rendering a file and getting the cached results:...

    docs.groupdocs.com/viewer/nodejs-java/caching-r...
  9. Extract table of contents from EPUB eBooks | Gr...

    How to extract table of contents from EPUB e-books getToc method is used....Conversion Product Solution GroupDocs...supported for TXT files. Therefore, for TXT file method returns...

    docs.groupdocs.com/parser/java/extract-table-of...
  10. Handling password required exception | GroupDocs

    This article shows how to handle missing document password exception with GroupDocs.Signature API....Conversion Product Solution GroupDocs...}; // try to sign document to file, we expect for PasswordRequiredExce...

    docs.groupdocs.com/signature/net/handling-passw...