See Also

BasicSchema Members  | ceTe.DynamicPDF.Xmp Namespace

Requirements

Namespace: ceTe.DynamicPDF.Xmp

Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family

Assembly: ceTe.DynamicPDF (in ceTe.DynamicPDF.dll)

Language

Visual Basic

C#

Show All

Class represents the XMP Basic Schema.

For a list of all members of this type, see BasicSchema members.

Object Model



Inheritance Hierarchy

System.Object
   ceTe.DynamicPDF.Xmp.XmpSchema
      ceTe.DynamicPDF.Xmp.BasicSchema

Syntax

[Visual Basic]
Public Class BasicSchema    Inherits XmpSchema
[C#]
public class BasicSchema : XmpSchema

Remarks

The XMP Basic Schema contains properties that provide basic descriptive information.

Example

This example shows how to create an Basic Schema and Add it to the Xmp Metadata.

[Visual Basic] 

Imports System
Imports System.IO
Imports ceTe.DynamicPDF
Imports ceTe.DynamicPDF.Xmp

Module MyModule

    Sub Main()

        ' Create a PDF Document
        Dim MyDocument As Document = New Document

        ' Add blank pages to the document
        MyDocument.Pages.Add(New Page(PageSize.Letter))
        MyDocument.Pages.Add(New Page(PageSize.Letter))

        ' Create an Xmp Metadata
        Dim MyXmp As XmpMetadata = New XmpMetadata

        ' Basic Schema.
        Dim Mybs As BasicSchema = MyXmp.BasicSchema
        Mybs.Advisory.Add("Date")
        Mybs.Advisory.Add("Contributors")
        Mybs.CreationDate = DateTime.Now
        Mybs.Nickname = "xyz"
        Mybs.Thumbnails.Add(106, 80, "JPEG", GetImage("C:\thumbnail.jpg"))
        ' Note: Need not have to add Basic Schema, already added internally.

        ' Add the Xmp Metadata to the document
        MyDocument.XmpMetadata = MyXmp

        ' Save the PDF document
        MyDocument.Draw("C:\MyDocument.pdf")

    End Sub

    Private Function GetImage(ByVal filePath As String) As Byte()

        Dim MyInFile As FileStream = New FileStream(filePath, FileMode.Open, FileAccess.Read)
        Dim MyBinaryData(MyInFile.Length) As Byte
        MyInFile.Read(MyBinaryData, 0, MyInFile.Length)
        MyInFile.Close()
        return MyBinaryData

    End Function

End Module

[C#] 

using System; 
using System.IO; 
using ceTe.DynamicPDF; 
using ceTe.DynamicPDF.Xmp; 
 
class MyClass 

    static void Main() 
    { 
        // Create a PDF Document 
        Document document = new Document(); 
         
        // Add blank pages to the document 
        document.Pages.Add( new Page( PageSize.Letter ) ); 
        document.Pages.Add( new Page( PageSize.Letter ) ); 
         
        // Create an Xmp Metadata 
        XmpMetadata xmp = new XmpMetadata(); 
         
        // Basic Schema. 
        BasicSchema bs = xmp.BasicSchema; 
        bs.Advisory.Add( "Date" ); 
        bs.Advisory.Add( "Contributors" ); 
        bs.CreationDate = DateTime.Now; 
        bs.Nickname = "xyz"; 
        bs.Thumbnails.Add(106, 80, "JPEG", GetImage( @"C:\thumbnail.jpg" ) ); 
        // Note: Need not have to add Basic Schema, already added internally. 
         
        // Add the Xmp Metadata to the document 
        document.XmpMetadata = xmp; 
         
        // Save the PDF document 
        document.Draw( @"C:\MyDocument.pdf" ); 
    } 
     
    private static byte[] GetImage( string filePath ) 
    { 
        FileStream inFile = new FileStream( filePath, FileMode.Open, FileAccess.Read ); 
        byte[] binaryData = new byte[ inFile.Length ]; 
        inFile.Read( binaryData, 0, (int)inFile.Length ); 
        inFile.Close();             
        return binaryData; 
    }     
}

Licensing

This class is a DynamicPDF Generator Enterprise Edition feature. One of the following licenses is required for non-evaluation usage:

Requirements

Namespace: ceTe.DynamicPDF.Xmp

Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family

Assembly: ceTe.DynamicPDF (in ceTe.DynamicPDF.dll)

See Also

BasicSchema Members  | ceTe.DynamicPDF.Xmp Namespace

 

 


© Copyright 2007, ceTe Software