internal PdfHeader(PdfDocument PdfDocument,string subject,string title,string author)
            :base(PdfDocument)
		{
			this.subject=subject;
			this.title=title;
			this.author=author;
			this.creationdate=DateTime.Today.ToShortDateString();
		}
		internal PdfPage(PdfDocument pdfDocument, PdfDocumentFormat PdfDocumentFormat)
            :base(pdfDocument)
		{
            this.PdfDocument.pageCount++;
            this.Images = new ArrayList();
			this.PdfDocumentFormat=PdfDocumentFormat;
			this.PdfStream=new PdfStream(this);
		}	
 internal PdfImage(PdfDocument pdfDocument, byte[] imageStream, int width, int height,string hash)
     :base(pdfDocument)
 {
     this.imageStream = imageStream;
     this.width = width;
     this.height = height;
     this.hash = hash;
 }
 internal PdfObject(PdfDocument pdfDocument)
 {
     this.PdfDocument = pdfDocument;
     this._id = this.PdfDocument.GetNextId();
     this.PdfDocument.PdfObjects.Add(this);
 }
        internal PdfRoot(PdfDocument PdfDocument)
            :base(PdfDocument)
		{

		}
		internal PdfCatalog(PdfDocument PdfDocument)
            :base(PdfDocument)
		{

		}
Пример #7
0
 internal PdfObject(PdfDocument pdfDocument)
 {
     this.PdfDocument = pdfDocument;
     this._id         = this.PdfDocument.GetNextId();
     this.PdfDocument.PdfObjects.Add(this);
 }