gpt4 book ai didi

C++ pango 文本方向

转载 作者:搜寻专家 更新时间:2023-10-31 01:47:31 27 4
gpt4 key购买 nike

我正在尝试在使用 pango 构建的绘图中标记 y 轴。

我无法将文本定向为沿 y 轴垂直向上。

代码的相关部分是:

 #include <gtkmm.h>

Pango::FontDescription font;
cr->save(); // where cr is Glib::RefPtr<Cairo::Context> const &
cr->set_source_rgba(1.0,1.0,1.0,0.5);
font.set_family("Monospace");
font.set_style(Pango::STYLE_ITALIC);
font.set_weight(Pango::WEIGHT_BOLD);
font.set_absolute_size(20);
Glib::RefPtr<Pango::Layout> x_axis_label = this->create_pango_layout("x-axis label");
x_axis_label->set_font_description(font);
cr->move_to(0.38,0.465);
x_axis_label->show_in_cairo_context(cr);

// so far so good, renders as expected

// now trying to render the y-axis label
Glib::RefPtr<Pango::Context> t_y_axis_label_ctxt = x_axis_label->get_context();
Pango::Matrix p_matrix;
// apply some transformation
p_matrix.xx = 0.0;
p_matrix.xy = 1.0;
p_matrix.yx = 1.0;
p_matrix.yy = 0.0;
p_matrix.x0 = 0.0;
p_matrix.y0 = 0.0;
t_y_axis_label_ctxt->set_matrix(p_matrix);
Glib::RefPtr<Pango::Layout> y_axis_label = Pango::Layout::create(t_y_axis_label_ctxt);

y_axis_label->set_text("y-axis label"); // if this line of code is omitted I would expect, at least the text "x-axis label" to be rendered. But this does not happen.
y_axis_label->set_font_description(font);
cr->move_to(0.0,0.0);
y_axis_label->show_in_cairo_context(cr); // renders no output
cr->restore();

我怀疑问题与我从 x 轴标签中检索到的上下文有关,而预期的复制行为并未出现。

最佳答案

您确定要旋转 Pango 上下文吗?我相信功能是在开罗时代之前引入的;现在你只需旋转 Cairo 上下文,例如:

cr->save();
cr->rotate_degrees(90);
Glib::RefPtr<Pango::Layout> y_axis_label = this->create_pango_layout("y-axis label");
y_axis_label->set_font_description(font);
cr->move_to(...); // wherever you wanna put it
y_axis_label->show_in_cairo_context(cr);
cr->restore();

如果您仍然没有看到任何东西,请确保您没有将标签移出可见区域。

关于C++ pango 文本方向,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19109299/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com