22 lines
370 B
Protocol Buffer
22 lines
370 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
message AllDocumentPages {
|
|
|
|
repeated DocumentPage documentPages = 1;
|
|
}
|
|
|
|
message DocumentPage {
|
|
// The page number, starting with 1.
|
|
int32 number = 1;
|
|
|
|
// The page height in PDF user units.
|
|
int32 height = 2;
|
|
|
|
// The page width in PDF user units.
|
|
int32 width = 3;
|
|
|
|
// The page rotation as specified by the PDF.
|
|
int32 rotation = 4;
|
|
}
|
|
|