2

我正在使用 C 语言的 gtk 中的 cairo 绘制图表。我曾经cairo_show_text显示文字。为中心对齐定义中心点很容易。但我不知道如何使文本居中对齐。

问题是我不知道如何计算文本长度(我认为这也与字体大小有关)。如果我可以获得文本长度,我可以通过使用移动到适当的点cairo_move_to,然后通过显示文本cairo_show_text

有什么建议或任何其他方法吗?

根据随后的liberforce的评论,解决方案是

/* howto_move: 0 -- cairo_move_to, 1 -- cairo_rel_move_to
 * x, y is the coordinate of the point for center-align. Whether it is absolute
 * or relative coordinate depends on `howto_move'
 */
void cairo_text_align_horizontal_center (cairo_t *cr, char *text, int if_vertical, int howto_move, double x, double y)
{
  cairo_text_extents_t te;
  double new_x, new_y;

  cairo_text_extents(cr, text, &te);
  if(!if_vertical)
  {
    new_x = x - (te.x_bearing + te.width / 2);
    new_y = y;
  }
  else
  {
    new_x = x;
    new_y = y + (te.x_bearing + te.width / 2);
  }
  if(howto_move == 0)
    cairo_move_to(cr, new_x, new_y);
  else
    cairo_rel_move_to(cr, new_x, new_y);
  cairo_save(cr);
  if(!if_vertical)
    cairo_rotate(cr, 0);
  else
    cairo_rotate(cr, - PI / 2.0);
  cairo_show_text(cr, text);
  cairo_restore(cr);
  cairo_stroke(cr);
}
4

1 回答 1

2

查看cairo 教程文本对齐部分

请记住,对于文本,Cairo API 有点受限。对于更高级的东西,你需要pangocairo

于 2012-09-19T09:26:53.460 回答