github.com/signintech/pdft@v0.5.0/minigopdf/pdf_info_obj.go (about)

     1  package gopdf
     2  
     3  import "time"
     4  
     5  // PdfInfo Document Information Dictionary
     6  type PdfInfo struct {
     7  	Title        string    //The document’s title
     8  	Author       string    //The name of the person who created the document.
     9  	Subject      string    //The subject of the document.
    10  	Creator      string    // If the document was converted to PDF from another format, the name of the application original document from which it was converted.
    11  	Producer     string    //If the document was converted to PDF from another format, the name of the application (for example, Acrobat Distiller) that converted it to PDF.
    12  	CreationDate time.Time //The date and time the document was created, in human-readable form
    13  }