- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在 lua 中编写一些小部件以供 conky
使用显示一些东西。我达到了我想要居中文本的程度。正在关注this教程,我移植了C
编码为 lua
代码,所以它现在看起来像这样:
local extents
local utf8 = "cairo"
local x, y
cairo_select_font_face(cr, "Ubuntu", CAIRO_FONT_SLANT_NORMAL, CAIRO_FONT_WEIGHT_NORMAL)
cairo_set_font_size(cr, 13)
cairo_text_extents(cr, utf8, extents)
x = 128.0 - (extents.width / 2 + extents.x_bearing)
y = 128.0 - (extents.height / 2 + extents.y_bearing)
cairo_move_to(cr, x, y)
cairo_show_text(cr, utf8)
我现在要处理的问题是 C
数据类型 cairo_text_extents_t
应该传递给 cairo_text_extents
未被 lua
识别, 事实上 conky
关闭没有任何输出。
有没有办法让lua
认识那种数据类型?
最佳答案
我终于找到了答案。在 conky 中,存在一个函数可以满足我的需求,如指定的那样 here :
cairo_text_extents_t:create() function
Call this function to return a newcairo_text_extents_t
structure. A creation function for this structure is not provided by the cairo API. After calling this, you should usetolua.takeownership()
on the return value to ensure ownership is passed properly.
因此,执行以下操作就足够了:
local extents = cairo_text_extents_t:create()
tolua.takeownership(extents)
local utf8 = "cairo"
local x, y
cairo_select_font_face(cr, "Ubuntu", CAIRO_FONT_SLANT_NORMAL, CAIRO_FONT_WEIGHT_NORMAL)
cairo_set_font_size(cr, 52)
cairo_text_extents(cr, utf8, extents)
x = 128.0 - (extents.width / 2 + extents.x_bearing)
y = 128.0 - (extents.height / 2 + extents.y_bearing)
cairo_move_to (cr, x, y)
cairo_show_text (cr, utf8)
关于lua - lua 无法识别 cairo_text_extents_t,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42671518/
我正在 lua 中编写一些小部件以供 conky 使用显示一些东西。我达到了我想要居中文本的程度。正在关注this教程,我移植了C编码为 lua代码,所以它现在看起来像这样: local extent
我是一名优秀的程序员,十分优秀!