Tue, 01 Jan 2002 05:02:44 +0000
create temporary TIFF file.
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 | |
eric@25 | 13 | void process_page_numbers (int page_index, |
eric@25 | 14 | int count, |
eric@25 | 15 | int base, |
eric@25 | 16 | page_label_t *page_label); |
eric@25 | 17 | |
eric@23 | 18 | boolean process_page (int image, /* range 1 .. n */ |
eric@23 | 19 | input_attributes_t input_attributes, |
eric@25 | 20 | bookmark_t *bookmarks); |