Ontdek hoe je GroupDocs.Metadata for Python via .NET kunt gebruiken om metadata te extraheren, bij te werken en te verwijderen in je applicaties....IPTC, XMP, EXIF en Image Resources. Multimediametadatabe : Manipuleer...
This article explains how to implement custom serialization for Metadata electronic signatures.... getHeight ()); } More resources GitHub Examples You may easily...
This page contains a description of the use of document filters for indexing, as well as descriptions of all types of filters with examples of their creation....setDocumentFilter ( finalFilter ); More resources GitHub examples You may easily...
Step-by-step guide to implementing PDF document security with GroupDocs.Signature - add passwords, set user permissions, and control document access for enhanced protection...information and additional resources, you may find the following...
Learn how to utilize custom fonts in GroupDocs.Watermark to ensure branding consistency and system independence. Follow our step-by-step instructions and Docker setup....information and additional resources, you may find the following...
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.... OutputPdf ); } More resources GitHub examples You may easily...