21 lines
457 B
C
21 lines
457 B
C
typedef struct
|
|
{
|
|
page_size_t size;
|
|
int rotation;
|
|
crop_t crop;
|
|
} input_attributes_t;
|
|
|
|
boolean open_tiff_input_file (char *name);
|
|
boolean close_tiff_input_file (void);
|
|
|
|
boolean open_pdf_output_file (char *name);
|
|
|
|
void process_page_numbers (int page_index,
|
|
int count,
|
|
int base,
|
|
page_label_t *page_label);
|
|
|
|
boolean process_page (int image, /* range 1 .. n */
|
|
input_attributes_t input_attributes,
|
|
bookmark_t *bookmarks);
|