Tue, 01 Jan 2002 03:44:40 +0000
handle input and output files properly.
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);
13 void process_page_numbers (int page_index,
14 int count,
15 int base,
16 page_label_t *page_label);
18 boolean process_page (int image, /* range 1 .. n */
19 input_attributes_t input_attributes,
20 bookmark_t *bookmarks);