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