XmpPdfSchema Class
Defines the XMP PDF namespace.
Declaration
public class XmpPdfSchema extends JavaObject
Remarks
XmpPdfSchema stores metadata defined by the XMP PDF schema. Use this class to read or modify PDF-specific metadata, such as the PDF version, producer, keywords, and trapping status.
Inherited Members
Inheritance
Methods
getKeywords() Method
Returns keywords associated with the PDF document.
Declaration
public XmpString getKeywords()
Returns
| Type | Description |
|---|---|
| XmpString | Document keywords. |
getPdfVersion() Method
Returns the PDF version stored in the document metadata.
Declaration
public XmpString getPdfVersion()
Returns
| Type | Description |
|---|---|
| XmpString | The PDF specification version (for example, |
getProducer() Method
Returns the name of the application that generated the PDF document.
Declaration
public XmpString getProducer()
Returns
| Type | Description |
|---|---|
| XmpString | The name of the application that produced the PDF document. |
getTrapped() Method
Returns the document trapping status.
Declaration
public XmpBool getTrapped()
Returns
| Type | Description |
|---|---|
| XmpBool | A value that indicates whether the document has been trapped for printing. |
setKeywords(XmpString value) Method
Sets keywords associated with the PDF document.
Declaration
public void setKeywords(XmpString value)
Parameters
| Name | Type | Description |
|---|---|---|
| value | XmpString | Document keywords. |
setPdfVersion(XmpString value) Method
Sets the PDF version stored in the document metadata.
Declaration
public void setPdfVersion(XmpString value)
Parameters
| Name | Type | Description |
|---|---|---|
| value | XmpString | The PDF specification version (for example, |
setProducer(XmpString value) Method
Sets the name of the application that generated the PDF document.
Declaration
public void setProducer(XmpString value)
Parameters
| Name | Type | Description |
|---|---|---|
| value | XmpString | The name of the application that produced the PDF document. |
setTrapped(XmpBool value) Method
Sets the document trapping status.
Declaration
public void setTrapped(XmpBool value)
Parameters
| Name | Type | Description |
|---|---|---|
| value | XmpBool | A value that indicates whether the document has been trapped for printing. |