summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 0170ca5)
raw | patch | inline | side by side (parent: 0170ca5)
author | oetiker <oetiker@a5681a0c-68f1-0310-ab6d-d61299d08faa> | |
Sat, 9 Feb 2002 06:21:11 +0000 (06:21 +0000) | ||
committer | oetiker <oetiker@a5681a0c-68f1-0310-ab6d-d61299d08faa> | |
Sat, 9 Feb 2002 06:21:11 +0000 (06:21 +0000) |
program/src/rrd_gfx.c | patch | blob | history |
diff --git a/program/src/rrd_gfx.c b/program/src/rrd_gfx.c
index 715d8d2c30dc275ed45db9711d76d4ad72165859..724a0747fafee1b354ddafb9d8f8c65aacdbfe46 100644 (file)
--- a/program/src/rrd_gfx.c
+++ b/program/src/rrd_gfx.c
}
error = FT_Load_Glyph( face, glyph_index, 0 );
+ if ( error ) {
+ FT_Done_FreeType(library);
+ return -1;
+ }
if (! previous) {
text_width -= (double)slot->metrics.horiBearingX / 64.0; /* add just char width */
}
text_width -= (double)slot->metrics.horiAdvance / 64.0; /* remove last step */
text_width += (double)slot->metrics.width / 64.0; /* add just char width */
text_width += (double)slot->metrics.horiBearingX / 64.0; /* add just char width */
+ FT_Done_FreeType(library);
return text_width;
}
(char *)node->filename,
0,
&face );
+ if ( error ) break;
use_kerning = FT_HAS_KERNING(face);
- if ( error ) break;
error = FT_Set_Char_Size(face, /* handle to face object */
(long)(node->size*64),
(long)(node->size*64),
(long)(100*zoom),
(long)(100*zoom));
+ if ( error ) break;
pen_x = node->x * zoom;
pen_y = node->y * zoom;
slot = face->glyph;
}
error = FT_Load_Glyph( face, glyph_index, 0 );
+ if ( error ) break;
if (previous == 0){
pen_x -= (double)slot->metrics.horiBearingX / 64.0; /* adjust pos for first char */
text_width -= (double)slot->metrics.horiBearingX / 64.0; /* add just char width */
}
error = FT_Load_Glyph( face, glyph_index, FT_LOAD_RENDER );
+ if ( error ) break;
gr = slot->bitmap.num_grays -1;
for (iy=0; iy < slot->bitmap.rows; iy++){
long buf_y = iy+(pen_y+0.5)-slot->bitmap_top;
}
gfx_save_png(buffer,fp , pys_width,pys_height,bytes_per_pixel);
art_free(buffer);
+ FT_Done_FreeType( library );
return 0;
}