Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Harfbuzz
提交
e609aeb1
T
Third Party Harfbuzz
项目概览
OpenHarmony
/
Third Party Harfbuzz
1 年多 前同步成功
通知
0
Star
18
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
T
Third Party Harfbuzz
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
e609aeb1
编写于
5月 18, 2011
作者:
B
Behdad Esfahbod
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[hb-view] Add --annotate
Currently it only marks glyph origins.
上级
b8d76dd7
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
19 addition
and
1 deletion
+19
-1
src/hb-view.cc
src/hb-view.cc
+19
-1
未找到文件。
src/hb-view.cc
浏览文件 @
e609aeb1
...
...
@@ -62,6 +62,7 @@ static const char *script = NULL;
static
const
char
*
language
=
NULL
;
static
hb_feature_t
*
features
=
NULL
;
static
unsigned
int
num_features
;
static
hb_bool_t
annotate
=
FALSE
;
static
hb_bool_t
debug
=
FALSE
;
/* Ugh, global vars. Ugly, but does the job */
...
...
@@ -99,6 +100,7 @@ parse_opts (int argc, char **argv)
{
int
option_index
=
0
,
c
;
static
struct
option
long_options
[]
=
{
{
"annotate"
,
0
,
&
annotate
,
TRUE
},
{
"background"
,
1
,
0
,
'B'
},
{
"debug"
,
0
,
&
debug
,
TRUE
},
{
"direction"
,
1
,
0
,
'd'
},
...
...
@@ -411,7 +413,7 @@ create_context (void)
fr
=
fg
=
fb
=
0
;
fa
=
255
;
sscanf
(
fore
+
(
*
fore
==
'#'
),
"%2x%2x%2x%2x"
,
&
fr
,
&
fg
,
&
fb
,
&
fa
);
if
(
ba
==
255
&&
fa
==
255
&&
br
==
bg
&&
bg
==
bb
&&
fr
==
fg
&&
fg
==
fb
)
{
if
(
!
annotate
&&
ba
==
255
&&
fa
==
255
&&
br
==
bg
&&
bg
==
bb
&&
fr
==
fg
&&
fg
==
fb
)
{
/* grayscale. use A8 surface */
surface
=
cairo_image_surface_create
(
CAIRO_FORMAT_A8
,
width
,
height
);
cr
=
cairo_create
(
surface
);
...
...
@@ -482,6 +484,22 @@ draw (void)
width
=
MAX
(
width
,
extents
.
x_advance
);
cairo_save
(
cr
);
cairo_translate
(
cr
,
x
,
y
);
if
(
annotate
)
{
unsigned
int
i
;
cairo_save
(
cr
);
/* Draw actual glyph origins */
cairo_set_source_rgba
(
cr
,
1.
,
0.
,
0.
,
.5
);
cairo_set_line_width
(
cr
,
5
);
cairo_set_line_cap
(
cr
,
CAIRO_LINE_CAP_ROUND
);
for
(
i
=
0
;
i
<
num_glyphs
;
i
++
)
{
cairo_move_to
(
cr
,
glyphs
[
i
].
x
,
glyphs
[
i
].
y
);
cairo_rel_line_to
(
cr
,
0
,
0
);
}
cairo_stroke
(
cr
);
cairo_restore
(
cr
);
}
cairo_show_glyphs
(
cr
,
glyphs
,
num_glyphs
);
cairo_restore
(
cr
);
y
+=
ceil
(
font_extents
.
height
-
ceil
(
font_extents
.
ascent
));
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录