summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGlenn Randers-Pehrson <glennrp at users.sourceforge.net>2017-08-02 06:54:10 -0500
committerGlenn Randers-Pehrson <glennrp at users.sourceforge.net>2017-08-02 06:56:19 -0500
commitf8de55da040fc025cfcf4f5aafc82e1a805d9307 (patch)
treeb8989927dc2a1d23932d9a95869ab5d5a74c158d
parentfd6b87253c5663173c00f2fbf766c10202061deb (diff)
downloadlibpng-f8de55da040fc025cfcf4f5aafc82e1a805d9307.tar.gz
[libpng16] Fix descriptions of eXIf function calls in the manpage.
-rw-r--r--libpng-manual.txt6
-rw-r--r--libpng.36
2 files changed, 6 insertions, 6 deletions
diff --git a/libpng-manual.txt b/libpng-manual.txt
index 39b6d3a23..11c3b1ec3 100644
--- a/libpng-manual.txt
+++ b/libpng-manual.txt
@@ -1453,7 +1453,7 @@ png_set_rgb_to_gray()).
the single transparent color for
non-paletted images (PNG_INFO_tRNS)
- png_get_eXIf_1(png_ptr, info_ptr, &exif, &num_exif);
+ png_get_eXIf_1(png_ptr, info_ptr, &num_exif, &exif);
(PNG_INFO_eXIf)
exif - Exif profile (array of png_byte)
@@ -3103,9 +3103,9 @@ 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_1(png_ptr, info_ptr, exif, num_exif);
+ png_set_eXIf_1(png_ptr, info_ptr, num_exif, exif);
- hist - Exif profile (array of
+ exif - Exif profile (array of
png_byte) (PNG_INFO_eXIf)
png_set_hIST(png_ptr, info_ptr, hist);
diff --git a/libpng.3 b/libpng.3
index 7c4f58431..3c856d2c2 100644
--- a/libpng.3
+++ b/libpng.3
@@ -1967,7 +1967,7 @@ png_set_rgb_to_gray()).
the single transparent color for
non-paletted images (PNG_INFO_tRNS)
- png_get_eXIf_1(png_ptr, info_ptr, &exif, &num_exif);
+ png_get_eXIf_1(png_ptr, info_ptr, &num_exif, &exif);
(PNG_INFO_eXIf)
exif - Exif profile (array of png_byte)
@@ -3617,9 +3617,9 @@ 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_1(png_ptr, info_ptr, exif, num_exif);
+ png_set_eXIf_1(png_ptr, info_ptr, num_exif, exif);
- hist - Exif profile (array of
+ exif - Exif profile (array of
png_byte) (PNG_INFO_eXIf)
png_set_hIST(png_ptr, info_ptr, hist);