Mon, 31 Dec 2001 16:44:24 +0000
replaced page_number_format with page_label matching how PDF names
and stores them.
1 typedef struct
2 {
3 page_size_t size;
4 int rotation;
5 crop_t crop;
6 } input_attributes_t;
8 boolean open_tiff_input_file (char *name);
9 boolean close_tiff_input_file (void);
11 boolean open_pdf_output_file (char *name);
12 boolean close_pdf_output_file (void);
14 void process_page_numbers (int page_index,
15 int count,
16 int base,
17 page_label_t *page_label);
19 boolean process_page (int image, /* range 1 .. n */
20 input_attributes_t input_attributes,
21 bookmark_t *bookmarks);