From 745feb51a9a8f63595ecdbc37fabe9345277b40c Mon Sep 17 00:00:00 2001 From: Marcus Boerger Date: Fri, 12 Apr 2002 18:58:32 +0000 Subject: [PATCH] Describing ini settings for exif. git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@77920 c90b9560-bf6c-de11-be94-00142212c4b1 --- chapters/config.xml | 107 +++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 106 insertions(+), 1 deletion(-) diff --git a/chapters/config.xml b/chapters/config.xml index a5a3e87bf5..c192b5b837 100644 --- a/chapters/config.xml +++ b/chapters/config.xml @@ -1,5 +1,5 @@ - + Configuration @@ -1537,6 +1537,111 @@ NOTYPE + + Exif Configuration Directives + + + + + exif.encode_unicode + string + + + + exif.encode_unicode defines the + characterset UNICODE user comments are handled. + This defaults to ISO-8859-15 which should work for + most non asian counties. The setting can be empty + or must be an encoding supported by mbstring. If it + is empty the current internal encoding of mbstring is + used. + + + + + + + exif.decode_unicode_motorola + string + + + + exif.decode_unicode_motorola defines + the image internal characterset for Unicode encoded user + comments if image is in motorola byte order (big-endian). + This setting cannot be empty but you can specify a list + of encodings supported by mbstring. The default is UCS-2BE. + + + + + + + exif.decode_unicode_intel + string + + + + exif.decode_unicode_intel defines + the image internal characterset for Unicode encoded user + comments if image is in intel byte order (little-endian). + This setting cannot be empty but you can specify a list + of encodings supported by mbstring. The default is UCS-2LE. + + + + + + + exif.encode_jis + string + + + + exif.encode_jis defines the + characterset JIS user comments are handled. + This defaults to an empty value which forces + the functions to use the current internal encoding + of mbstring. + + + + + + + exif.decode_jis_motorola + string + + + + exif.decode_jis_motorola defines + the image internal characterset for JIS encoded user + comments if image is in motorola byte order (big-endian). + This setting cannot be empty but you can specify a list + of encodings supported by mbstring. The default is JIS. + + + + + + + exif.decode_jis_intel + string + + + + exif.decode_jis_intel defines + the image internal characterset for JIS encoded user + comments if image is in intel byte order (little-endian). + This setting cannot be empty but you can specify a list + of encodings supported by mbstring. The default is JIS. + + + + + + +