Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Harfbuzz
提交
6c0ebd02
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看板
提交
6c0ebd02
编写于
11月 05, 2015
作者:
B
Behdad Esfahbod
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[util] If font has color, generate PNG with color
上级
e95eb23a
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
37 addition
and
9 deletion
+37
-9
util/helper-cairo.cc
util/helper-cairo.cc
+26
-7
util/helper-cairo.hh
util/helper-cairo.hh
+5
-1
util/view-cairo.cc
util/view-cairo.cc
+6
-1
未找到文件。
util/helper-cairo.cc
浏览文件 @
6c0ebd02
...
...
@@ -128,6 +128,22 @@ helper_cairo_create_scaled_font (const font_options_t *font_opts)
return
scaled_font
;
}
bool
helper_cairo_scaled_font_has_color
(
cairo_scaled_font_t
*
scaled_font
)
{
bool
ret
=
false
;
#ifdef FT_HAS_COLOR
FT_Face
ft_face
=
cairo_ft_scaled_font_lock_face
(
scaled_font
);
if
(
ft_face
)
{
if
(
FT_HAS_COLOR
(
ft_face
))
ret
=
true
;
cairo_ft_scaled_font_unlock_face
(
scaled_font
);
}
#endif
return
ret
;
}
struct
finalize_closure_t
{
void
(
*
callback
)(
finalize_closure_t
*
);
...
...
@@ -295,7 +311,8 @@ const char *helper_cairo_supported_formats[] =
cairo_t
*
helper_cairo_create_context
(
double
w
,
double
h
,
view_options_t
*
view_opts
,
output_options_t
*
out_opts
)
output_options_t
*
out_opts
,
cairo_content_t
content
)
{
cairo_surface_t
*
(
*
constructor
)
(
cairo_write_func_t
write_func
,
void
*
closure
,
...
...
@@ -357,12 +374,14 @@ helper_cairo_create_context (double w, double h,
color
=
view_opts
->
fore
?
view_opts
->
fore
:
DEFAULT_FORE
;
sscanf
(
color
+
(
*
color
==
'#'
),
"%2x%2x%2x%2x"
,
&
fr
,
&
fg
,
&
fb
,
&
fa
);
cairo_content_t
content
;
if
(
!
view_opts
->
annotate
&&
ba
==
255
&&
br
==
bg
&&
bg
==
bb
&&
fr
==
fg
&&
fg
==
fb
)
content
=
CAIRO_CONTENT_ALPHA
;
else
if
(
ba
==
255
)
content
=
CAIRO_CONTENT_COLOR
;
else
if
(
content
==
CAIRO_CONTENT_ALPHA
)
{
if
(
view_opts
->
annotate
||
br
!=
bg
||
bg
!=
bb
||
fr
!=
fg
||
fg
!=
fb
)
content
=
CAIRO_CONTENT_COLOR
;
}
if
(
ba
!=
255
)
content
=
CAIRO_CONTENT_COLOR_ALPHA
;
cairo_surface_t
*
surface
;
...
...
util/helper-cairo.hh
浏览文件 @
6c0ebd02
...
...
@@ -35,12 +35,16 @@
cairo_scaled_font_t
*
helper_cairo_create_scaled_font
(
const
font_options_t
*
font_opts
);
bool
helper_cairo_scaled_font_has_color
(
cairo_scaled_font_t
*
scaled_font
);
extern
const
char
*
helper_cairo_supported_formats
[];
cairo_t
*
helper_cairo_create_context
(
double
w
,
double
h
,
view_options_t
*
view_opts
,
output_options_t
*
out_opts
);
output_options_t
*
out_opts
,
cairo_content_t
content
);
void
helper_cairo_destroy_context
(
cairo_t
*
cr
);
...
...
util/view-cairo.cc
浏览文件 @
6c0ebd02
...
...
@@ -64,10 +64,15 @@ view_cairo_t::render (const font_options_t *font_opts)
w
=
MAX
(
w
,
x_sign
*
x_advance
);
}
/* See if font needs color. */
cairo_content_t
content
=
CAIRO_CONTENT_ALPHA
;
if
(
helper_cairo_scaled_font_has_color
(
scaled_font
))
content
=
CAIRO_CONTENT_COLOR
;
/* Create surface. */
cairo_t
*
cr
=
helper_cairo_create_context
(
w
+
view_options
.
margin
.
l
+
view_options
.
margin
.
r
,
h
+
view_options
.
margin
.
t
+
view_options
.
margin
.
b
,
&
view_options
,
&
output_options
);
&
view_options
,
&
output_options
,
content
);
cairo_set_scaled_font
(
cr
,
scaled_font
);
/* Setup coordinate system. */
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录