File tree Expand file tree Collapse file tree 1 file changed +10
-0
lines changed
xmpbox/src/main/java/org/apache/xmpbox/schema Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Original file line number Diff line number Diff line change 2121package org .apache .xmpbox .schema ;
2222
2323import org .apache .xmpbox .XMPMetadata ;
24+ import org .apache .xmpbox .type .Cardinality ;
2425import org .apache .xmpbox .type .PropertyType ;
2526import org .apache .xmpbox .type .StructuredType ;
2627import org .apache .xmpbox .type .Types ;
3637public class XMPPageTextSchema extends XMPSchema
3738{
3839
40+ // The size of the largest page in the document
3941 @ PropertyType (type = Types .Dimensions )
4042 public static final String MAX_PAGE_SIZE = "MaxPageSize" ;
4143
44+ // The number of pages in the document
4245 @ PropertyType (type = Types .Integer )
4346 public static final String N_PAGES = "NPages" ;
4447
48+ // An ordered array of plate names that are needed to print the document
49+ @ PropertyType (type = Types .Text , card = Cardinality .Seq )
50+ public static final String PLATENAMES = "PlateNames" ; // Ordered array of Text
51+
52+ // missing:
53+ // Colorants / Ordered array of Colorants / Cardinality.Seq
54+ // Fonts / Unordered array of Fonts / Cardinality.Bag
4555
4656 public XMPPageTextSchema (XMPMetadata metadata )
4757 {
You can’t perform that action at this time.
0 commit comments