gdouble gnome_font_get_glyph_width (GnomeFont *font, gint ch) g_return_val_if_fail (font != NULL, 0.0); g_return_val_if_fail (GNOME_IS_FONT (font), 0.0); if (ch < 0 || ch >= 256) return 0.0; return gnome_font_face_get_glyph_width (font->face, ch) * 0.001 * font->size;
TT
コメント
コメントを投稿