053472b7320a7d570f7484e09a3a26d8ca731645
[swftools.git] / lib / pdf / bbox.h
1 #ifndef __bbox_h__
2 #define __bbox_h__
3
4 typedef struct _ibbox {
5     int xmin,ymin,xmax,ymax;
6     struct _ibbox*next;
7 } ibbox_t;
8
9 ibbox_t* ibbox_new(int x1, int y1, int x2, int y2);
10 void ibbox_destroy(ibbox_t*b);
11 ibbox_t*get_bitmap_bboxes(unsigned char*alpha, int width, int height);
12
13 #endif //__bbox_h__