Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Libpng
提交
d930d361
T
Third Party Libpng
项目概览
OpenHarmony
/
Third Party Libpng
大约 1 年 前同步成功
通知
4
Star
22
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
T
Third Party Libpng
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
d930d361
编写于
8月 03, 2017
作者:
G
Glenn Randers-Pehrson
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[libpng16] Restored png_get_eXIf_1() and png_set_eXIf_1() because strlen(eXIf_buf)
does not work (the eXIf chunk data can contain zeroes).
上级
a1fe2c98
变更
7
显示空白变更内容
内联
并排
Showing
7 changed file
with
39 addition
and
13 deletion
+39
-13
ANNOUNCE
ANNOUNCE
+2
-0
CHANGES
CHANGES
+2
-0
png.h
png.h
+5
-1
pngget.c
pngget.c
+11
-0
pngrutil.c
pngrutil.c
+1
-1
pngset.c
pngset.c
+10
-1
pngtest.c
pngtest.c
+8
-10
未找到文件。
ANNOUNCE
浏览文件 @
d930d361
...
...
@@ -61,6 +61,8 @@ Version 1.6.32beta07 [Auguest 3, 2017]
Version 1.6.32beta08 [August 3, 2017]
Check length of IDAT against maximum possible IDAT size, accounting
for height, rowbytes, interlacing and zlib/deflate overhead.
Restored png_get_eXIf_1() and png_set_eXIf_1(), because strlen(eXIf_buf)
does not work (the eXIf chunk data can contain zeroes).
Send comments/corrections/commendations to png-mng-implement at lists.sf.net
(subscription required; visit
...
...
CHANGES
浏览文件 @
d930d361
...
...
@@ -5944,6 +5944,8 @@ Version 1.6.32beta07 [Auguest 3, 2017]
Version 1.6.32beta08 [August 3, 2017]
Check length of IDAT against maximum possible IDAT size, accounting
for height, rowbytes, interlacing and zlib/deflate overhead.
Restored png_get_eXIf_1() and png_set_eXIf_1(), because strlen(eXIf_buf)
does not work (the eXIf chunk data can contain zeroes).
Send comments/corrections/commendations to png-mng-implement at lists.sf.net
(subscription required; visit
...
...
png.h
浏览文件 @
d930d361
...
...
@@ -2014,6 +2014,10 @@ PNG_EXPORT(246, png_uint_32, png_get_eXIf, (png_const_structrp png_ptr,
png_inforp
info_ptr
,
png_bytep
*
exif
));
PNG_EXPORT
(
247
,
void
,
png_set_eXIf
,
(
png_const_structrp
png_ptr
,
png_inforp
info_ptr
,
const
png_bytep
exif
));
PNG_EXPORT
(
248
,
png_uint_32
,
png_get_eXIf_1
,
(
png_const_structrp
png_ptr
,
png_inforp
info_ptr
,
png_uint_32
*
num_exif
,
png_bytep
*
exif
));
PNG_EXPORT
(
249
,
void
,
png_set_eXIf_1
,
(
png_const_structrp
png_ptr
,
png_inforp
info_ptr
,
png_uint_32
num_exif
,
const
png_bytep
exif
));
#endif
#ifdef PNG_gAMA_SUPPORTED
...
...
@@ -3259,7 +3263,7 @@ PNG_EXPORT(244, int, png_set_option, (png_structrp png_ptr, int option,
* one to use is one more than this.)
*/
#ifdef PNG_EXPORT_LAST_ORDINAL
PNG_EXPORT_LAST_ORDINAL
(
24
7
);
PNG_EXPORT_LAST_ORDINAL
(
24
9
);
#endif
#ifdef __cplusplus
...
...
pngget.c
浏览文件 @
d930d361
...
...
@@ -777,12 +777,23 @@ png_get_sPLT(png_const_structrp png_ptr, png_inforp info_ptr,
png_uint_32
PNGAPI
png_get_eXIf
(
png_const_structrp
png_ptr
,
png_inforp
info_ptr
,
png_bytep
*
exif
)
{
png_warning
(
png_ptr
,
"png_get_eXIf does not work; use png_get_eXIf_1"
);
PNG_UNUSED
(
info_ptr
)
PNG_UNUSED
(
exif
)
return
0
;
}
png_uint_32
PNGAPI
png_get_eXIf_1
(
png_const_structrp
png_ptr
,
png_inforp
info_ptr
,
png_uint_32
*
num_exif
,
png_bytep
*
exif
)
{
png_debug1
(
1
,
"in %s retrieval function"
,
"eXIf"
);
if
(
png_ptr
!=
NULL
&&
info_ptr
!=
NULL
&&
(
info_ptr
->
valid
&
PNG_INFO_eXIf
)
!=
0
&&
exif
!=
NULL
)
{
*
num_exif
=
info_ptr
->
num_exif
;
*
exif
=
info_ptr
->
exif
;
return
(
PNG_INFO_eXIf
);
}
...
...
pngrutil.c
浏览文件 @
d930d361
...
...
@@ -2078,7 +2078,7 @@ png_handle_eXIf(png_structrp png_ptr, png_inforp info_ptr, png_uint_32 length)
if
(
png_crc_finish
(
png_ptr
,
0
)
!=
0
)
return
;
png_set_eXIf
(
png_ptr
,
info_ptr
,
info_ptr
->
eXIf_buf
);
png_set_eXIf
_1
(
png_ptr
,
info_ptr
,
length
,
info_ptr
->
eXIf_buf
);
png_free
(
png_ptr
,
info_ptr
->
eXIf_buf
);
info_ptr
->
eXIf_buf
=
NULL
;
...
...
pngset.c
浏览文件 @
d930d361
...
...
@@ -138,6 +138,15 @@ png_set_cHRM_XYZ(png_const_structrp png_ptr, png_inforp info_ptr, double red_X,
void
PNGAPI
png_set_eXIf
(
png_const_structrp
png_ptr
,
png_inforp
info_ptr
,
const
png_bytep
eXIf_buf
)
{
png_warning
(
png_ptr
,
"png_set_eXIf does not work; use png_set_eXIf_1"
);
PNG_UNUSED
(
info_ptr
)
PNG_UNUSED
(
eXIf_buf
)
}
void
PNGAPI
png_set_eXIf_1
(
png_const_structrp
png_ptr
,
png_inforp
info_ptr
,
const
png_uint_32
num_exif
,
const
png_bytep
eXIf_buf
)
{
int
i
;
...
...
@@ -152,7 +161,7 @@ png_set_eXIf(png_const_structrp png_ptr, png_inforp info_ptr,
info_ptr
->
exif
=
NULL
;
}
info_ptr
->
num_exif
=
(
png_uint_32
)
strlen
((
const
char
*
)
eXIf_buf
)
;
info_ptr
->
num_exif
=
num_exif
;
info_ptr
->
exif
=
png_voidcast
(
png_bytep
,
png_malloc_warn
(
png_ptr
,
info_ptr
->
num_exif
));
...
...
pngtest.c
浏览文件 @
d930d361
...
...
@@ -1201,16 +1201,15 @@ test_one_file(PNG_CONST char *inname, PNG_CONST char *outname)
#ifdef PNG_READ_eXIf_SUPPORTED
{
png_bytep
exif
=
NULL
;
size_t
exif_length
;
png_uint_32
exif_length
;
if
(
png_get_eXIf
(
read_ptr
,
read_info_ptr
,
&
exif
)
!=
0
)
if
(
png_get_eXIf
_1
(
read_ptr
,
read_info_ptr
,
&
exif_length
,
&
exif
)
!=
0
)
{
exif_length
=
strlen
((
const
char
*
)
exif
);
if
(
exif_length
>
1
)
printf
(
" eXIf type %c%c, %lu bytes
\n
"
,
exif
[
0
],
exif
[
1
],
exif_length
);
(
unsigned
long
)
exif_length
);
# ifdef PNG_WRITE_eXIf_SUPPORTED
png_set_eXIf
(
write_ptr
,
write_info_ptr
,
exif
);
png_set_eXIf
_1
(
write_ptr
,
write_info_ptr
,
exif_length
,
exif
);
# endif
}
}
...
...
@@ -1562,14 +1561,13 @@ test_one_file(PNG_CONST char *inname, PNG_CONST char *outname)
png_bytep
exif
=
NULL
;
png_uint_32
exif_length
;
if
(
png_get_eXIf
(
read_ptr
,
end_info_ptr
,
&
exif
)
!=
0
)
if
(
png_get_eXIf
_1
(
read_ptr
,
end_info_ptr
,
&
exif_length
,
&
exif
)
!=
0
)
{
exif_length
=
(
png_uint_32
)
strlen
((
const
char
*
)
exif
);
if
(
exif_length
>
1
)
printf
(
" eXIf type %c%c, %
d
bytes
\n
"
,
exif
[
0
],
exif
[
1
],
(
int
)
exif_length
);
printf
(
" eXIf type %c%c, %
lu
bytes
\n
"
,
exif
[
0
],
exif
[
1
],
(
unsigned
long
)
exif_length
);
# ifdef PNG_WRITE_eXIf_SUPPORTED
png_set_eXIf
(
write_ptr
,
write_end_info_ptr
,
exif
);
png_set_eXIf
_1
(
write_ptr
,
write_end_info_ptr
,
exif_length
,
exif
);
# endif
}
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录