summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGlenn Randers-Pehrson <glennrp at users.sourceforge.net>2017-08-03 10:27:09 -0500
committerGlenn Randers-Pehrson <glennrp at users.sourceforge.net>2017-08-03 10:57:37 -0500
commit6f89dff45ed640d09baa9b7dcfdc9afa69f600d5 (patch)
treea15609beadcf245c86fa4adf07682bbe4ee6b6e9
parentd930d36155fe79b277c11d868572769cb4ffb586 (diff)
downloadlibpng-6f89dff45ed640d09baa9b7dcfdc9afa69f600d5.tar.gz
[libpng16] Imported from libpng-1.6.32beta08.tarv1.6.32beta08
-rw-r--r--libpng-manual.txt4
-rw-r--r--libpng.34
-rw-r--r--scripts/symbols.def2
3 files changed, 6 insertions, 4 deletions
diff --git a/libpng-manual.txt b/libpng-manual.txt
index aad270910..115dd241d 100644
--- a/libpng-manual.txt
+++ b/libpng-manual.txt
@@ -1454,7 +1454,7 @@ png_set_rgb_to_gray()).
the single transparent color for
non-paletted images (PNG_INFO_tRNS)
- png_get_eXIf(png_ptr, info_ptr, &exif);
+ png_get_eXIf_1(png_ptr, info_ptr, &num_exif, &exif);
(PNG_INFO_eXIf)
exif - Exif profile (array of png_byte)
@@ -3104,7 +3104,7 @@ width, height, bit_depth, and color_type must be the same in each call.
single transparent color for
non-paletted images (PNG_INFO_tRNS)
- png_set_eXIf(png_ptr, info_ptr, exif);
+ png_set_eXIf_1(png_ptr, info_ptr, num_exif, exif);
exif - Exif profile (array of
png_byte) (PNG_INFO_eXIf)
diff --git a/libpng.3 b/libpng.3
index af637da61..1b9e73f3a 100644
--- a/libpng.3
+++ b/libpng.3
@@ -1968,7 +1968,7 @@ png_set_rgb_to_gray()).
the single transparent color for
non-paletted images (PNG_INFO_tRNS)
- png_get_eXIf(png_ptr, info_ptr, &exif);
+ png_get_eXIf_1(png_ptr, info_ptr, &num_exif, &exif);
(PNG_INFO_eXIf)
exif - Exif profile (array of png_byte)
@@ -3618,7 +3618,7 @@ width, height, bit_depth, and color_type must be the same in each call.
single transparent color for
non-paletted images (PNG_INFO_tRNS)
- png_set_eXIf(png_ptr, info_ptr, exif);
+ png_set_eXIf_1(png_ptr, info_ptr, num_exif, exif);
exif - Exif profile (array of
png_byte) (PNG_INFO_eXIf)
diff --git a/scripts/symbols.def b/scripts/symbols.def
index f7dc60a49..f1a8c11c3 100644
--- a/scripts/symbols.def
+++ b/scripts/symbols.def
@@ -252,3 +252,5 @@ EXPORTS
png_image_write_to_memory @245
png_get_eXIf @246
png_set_eXIf @247
+ png_get_eXIf_1 @248
+ png_set_eXIf_1 @249