This article explains that how To set page-level scope ToPdf redactions....Conversion Product Solution GroupDocs...redaction filters / Use PDF redaction filters Use PDF redaction filters...
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...metadata in PDF documents Working with metadata in PDF documents...
Extract attachments from Pdf portfolios To extract attachments from Emails getContainer method is used. This method returns the collection of ContainerItem objects.
Here are the steps To extract an attachment text from Pdf Portfolios:
Instantiate Parser object for the initial document; Call getContainer method and obtain collection of ContainerItem objects; Check if collection isn’t null (container extraction is supported for the document); Iterate through the collection and get container item names, sizes and obtain content....Conversion Product Solution GroupDocs...data from PDF documents / Extract attachments from PDF portfolios...
Extract and save attachments from Emails, Pdfs, and archives using GroupDocs.Viewer for Python....Conversion Product Solution GroupDocs...attachments: Email attachments Files embedded in PDF files Email messages...
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<PdfRootPackage>(); 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...metadata in PDF documents Working with metadata in PDF documents...
Find answers about converting documents and images of various types using Java code on any platform....Conversion Product Family GroupDocs...Product Family GroupDocs.Conversion for Java Latest Answers How...
This article explains that how To set page-level scope ToPdf redactions....Conversion Product Solution GroupDocs...redaction filters / Use PDF redaction filters Use PDF redaction filters...
This article demonstrates that how you can specify starting page index (zero based) and the number of pages from this index To save a rasterized Pdf...Conversion Product Solution GroupDocs...rasterized PDF Select specific pages for rasterized PDF Leave feedback...
This article demonstrates that how you can specify starting page index (zero based) and the number of pages from this index To save a rasterized Pdf...Conversion Product Solution GroupDocs...rasterized PDF Select specific pages for rasterized PDF Leave feedback...
To extract Emails from Outlook STorage getContainer method is used. This method returns the collection of ContainerItem objects.
Outlook STorage item can contain the following metadata:
Name Description date The time and date at which the Outlook STorage item was last modified. Email-sender The value of “sender” field. Email-To The value of “To” field. subject The value of “subject” field. Outlook STorage container consists of Email documents (msg files).
Here are the steps To extract an Email text from outlook sTorage:...Conversion Product Solution GroupDocs...Extract data from Emails / Extract emails from Outlook Storage...