2

C言語のGTKでcairoを使ってグラフを描いています。以前cairo_show_textはテキストを表示していました。center-alignの中心点を定義するのは簡単です。しかし、テキストを中央揃えにする方法がわかりませんでした。

問題は、テキストの長さの計算方法がわからないことです(フォントサイズについても関係があると思います)。テキストの長さを取得できれば、を使用して適切なポイントに移動し、を使用し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チュートリアルのテキスト配置セクションを見てください。

テキストの場合、CairoAPIは少し制限されていることに注意してください。より高度なものについては、 pangocairoが必要になります。

于 2012-09-19T09:26:53.460 に答える