X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=lib%2Fgfxtools.h;h=ff282a3938a3c95ccc482be29452323cf834dc01;hb=0e9d27093c3e6e8e316fbc08bb9d422d74da2fd1;hp=a49a9b5e930b2349b283d5e1cc5040645c7c9ea4;hpb=3c6c2c2a98a273483285119b9cc0b782aa8a79c8;p=swftools.git diff --git a/lib/gfxtools.h b/lib/gfxtools.h index a49a9b5..ff282a3 100644 --- a/lib/gfxtools.h +++ b/lib/gfxtools.h @@ -50,6 +50,7 @@ typedef struct _gfxpoint typedef struct _gfxfontlist { gfxfont_t*font; + void*user; struct _gfxfontlist*next; } gfxfontlist_t; @@ -81,13 +82,17 @@ void gfxmatrix_multiply(gfxmatrix_t*m1, gfxmatrix_t*m2, gfxmatrix_t*dest); gfxfontlist_t* gfxfontlist_create(); gfxfontlist_t*gfxfontlist_addfont(gfxfontlist_t*list, gfxfont_t*font); +gfxfontlist_t*gfxfontlist_addfont2(gfxfontlist_t*list, gfxfont_t*font, void*user); gfxfont_t*gfxfontlist_findfont(gfxfontlist_t*list, char*id); char gfxfontlist_hasfont(gfxfontlist_t*list, gfxfont_t*font); +void* gfxfontlist_getuserdata(gfxfontlist_t*list, const char*id); void gfxfontlist_free(gfxfontlist_t*list, char deletefonts); +void gfximage_save_jpeg(gfximage_t*img, char*filename, int quality); + gfxbbox_t* gfxline_isrectangle(gfxline_t*_l); -gfxline_t*gfxline_makerectangle(int x1, int y1, int x2, int y2); +gfxline_t*gfxline_makerectangle(double x1, double y1, double x2, double y2); gfxline_t*gfxline_makecircle(double x,double y,double rx, double ry); void gfxline_show(gfxline_t*line, FILE*fi);