Data such as "author", "title" and "subject" can be used to create PDF documents. The metadata is included in the following order:
Metadata specified using the PDFreactor Java API
Data entered in the command-line
Metadata specified in the <meta> tags of the document
Data contained in the <title> tag
<html>
<head>
<title>My Document</title>
<meta name="author" content="RealObjects GmbH"</meta>
<meta name="subject" content="PDFreator Manual"</meta>
<head>
...
</html>Example: Specifying metadata using the PDFreactor Java API.
pdfReactor.setAuthor("John Doe");
pdfReactor.setTitle("Architecture of the World Wide Web, Volume One");
pdfReactor.setSubject("Architecture of the world wide web");The code above creates meta data as shown in the screenshot below:
