Click or drag to resize

PdfMetadata Class

Contains general information about the PDF file.
Inheritance Hierarchy
SystemObject
  Atalasoft.Imaging.Codec.PdfPdfMetadata

Namespace:  Atalasoft.Imaging.Codec.Pdf
Assembly:  Atalasoft.dotImage.Pdf (in Atalasoft.dotImage.Pdf.dll) Version: 11.4.0.9.0.377 (.NET 4.5.2, x86)
Syntax
public class PdfMetadata

The PdfMetadata type exposes the following members.

Constructors
  NameDescription
Public methodPdfMetadata
Creates a new instance of PdfMetadata.
Public methodPdfMetadata(String, String, String, String, String, String, DateTime, DateTime)
Creates a new instance of PdfMetadata specifying title, author, subject, keywords, creator, producer, creationDate and modifiedDate.
Top
Properties
  NameDescription
Public propertyAuthor
Gets or sets the author of this PDF.
Public propertyCreationDate
Gets or sets the creation date of this PDF.
Public propertyCreator
Gets or sets the application that created the original document if the document was converted to PDF from another format.
Public propertyKeywords
Gets or sets keywords associated with the document.
Public propertyModifiedDate
Gets or sets the date and time the document was most recently modified.
Public propertyProducer
Gets or sets the name of the application that produced this document if the document was converted to PDF from another format.
Public propertySubject
Gets or sets the subject of the document.
Public propertyTitle
Gets or sets the document's title.
Top
Methods
  NameDescription
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodStatic memberToPdfDateValue
Convert a System.DateTime to a PDF date value: D:YYYYMMDDhhmmssZ
Public methodStatic memberToSecondsPrecision
Round a DateTime down to the nearest second i.e. strip off Milliseconds
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
Remarks

If the strings in metadata contain a parentheses or backslash, the character must be escaped with a backslash.

PDF Metadata is used in the PdfEncoder to indicate information such as Author, Creator, Keywords, etc.

See Also