expand tmp image

SVN revision: 15936
This commit is contained in:
Carsten Haitzler 2005-07-29 02:23:55 +00:00
parent cf7ddecef8
commit 96693d652c
1 changed files with 6 additions and 3 deletions

View File

@ -77,9 +77,12 @@ imlib_render_str(ImlibImage * im, ImlibFont * fn, int drx, int dry,
ImlibImage *im2;
DATA32 *data, col;
int nx, ny, tmp;
imlib_font_query_advance(fn, text, &w, &h);
int inset;
inset = imlib_font_query_inset(fn, text);
imlib_font_query_size(fn, text, &w, &h);
w += inset;
data = malloc(w * h * sizeof(DATA32));
if (!data)
return;