Gtkmm+Pango::布局
我如何为 Pango::layout 设置不同的文本属性。
例如:我有一个文本“WELCOME”,可以说“W”是粗体,“E”是斜体,“L”是红色等等。 那么如果我使用 Pango::Layout 在开罗上下文中渲染此文本,例如
Glib::RefPtr layout = ...->create_pango_layout(); 布局->set_text(“欢迎”)。 1.但我希望这个的个性应该用不同的属性来呈现。 2.我也应该能够设置逐行对齐。
请有人帮我解决 Pango::layout 的渲染问题吗?
How can i set different different text attributes to Pango::layout.
For example: I have a Text "WELCOME" and lets say "W" is bold,"E" is italic and "L" has red color and so on..
then if i render this text in cairo context using Pango::Layout, like
Glib::RefPtr layout = ...->create_pango_layout();
layout->set_text("WELCOME").
1. But I want individual character of this should be rendered with different Attributes.
2. I should be able to set line by line alignment also.
Please anyone help me to resole rendering issue with Pango::layout?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用布局->set_markup 来实现这一点。 http://developer.gnome.org/pango/stable/PangoMarkupFormat.html
Pango 布局旨在处理整段文本。因此,您需要为每个对齐方式使用单独的布局。
You can use layout->set_markup for that. http://developer.gnome.org/pango/stable/PangoMarkupFormat.html
Pango layout is designed to deal with whole paragraphs of text. So you would need a separate layout for each alignment.