1 #ifndef _IMAGES_DUP_CMP_H
2 #define _IMAGES_DUP_CMP_H
13 #define IMAGE_DUP_TRANS_ID 0x01
14 #define IMAGE_DUP_FLIP_X 0x02
15 #define IMAGE_DUP_FLIP_Y 0x04
16 #define IMAGE_DUP_ROT_180 0x08
17 #define IMAGE_DUP_FLIP_BACK 0x10
18 #define IMAGE_DUP_ROT_CCW 0x20
19 #define IMAGE_DUP_ROT_CW 0x40
20 #define IMAGE_DUP_FLIP_SLASH 0x80
21 #define IMAGE_DUP_TRANS_ALL 0xff
22 #define IMAGE_DUP_SCALE 0x100
23 #define IMAGE_DUP_WANT_ALL 0x200
27 uns image_dup_init(struct image_thread *thread, struct image_dup *dup, struct image *image, struct mempool *pool);
28 uns image_dup_estimate_size(uns cols, uns rows);
32 uns image_dup_compare(struct image_dup *dup1, struct image_dup *dup2, uns flags);
37 image_dup_block(struct image_dup *dup, uns tab_col, uns tab_row)
39 return dup->tab_pixels + (dup->tab_row_size << tab_row) + (3 << (tab_row + tab_col));