helly Fri Apr 12 14:58:32 2002 EDT
Modified files:
/phpdoc/en/chapters config.xml
Log:
Describing ini settings for exif.
Index: phpdoc/en/chapters/config.xml
diff -u phpdoc/en/chapters/config.xml:1.47 phpdoc/en/chapters/config.xml:1.48
--- phpdoc/en/chapters/config.xml:1.47 Wed Apr 3 03:30:55 2002
+++ phpdoc/en/chapters/config.xml Fri Apr 12 14:58:32 2002
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.47 $ -->
+<!-- $Revision: 1.48 $ -->
<chapter id="configuration">
<title>Configuration</title>
@@ -1537,6 +1537,111 @@
</variablelist>
</sect2>
+ <sect2 id="ini.sect.exif">
+ <title>Exif Configuration Directives</title>
+ <variablelist>
+
+ <varlistentry id="ini.exif.encode_unicode">
+ <term>
+ <parameter>exif.encode_unicode</parameter>
+ <type>string</type>
+ </term>
+ <listitem>
+ <para>
+ <literal>exif.encode_unicode</literal> 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.
+ </para>
+ </listitem>
+ </varlistentry>
+
+ <varlistentry id="ini.exif.decode_unicode_motorola">
+ <term>
+ <parameter>exif.decode_unicode_motorola</parameter>
+ <type>string</type>
+ </term>
+ <listitem>
+ <para>
+ <literal>exif.decode_unicode_motorola</literal> 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.
+ </para>
+ </listitem>
+ </varlistentry>
+
+ <varlistentry id="ini.exif.decode_unicode_motorola">
+ <term>
+ <parameter>exif.decode_unicode_intel</parameter>
+ <type>string</type>
+ </term>
+ <listitem>
+ <para>
+ <literal>exif.decode_unicode_intel</literal> 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.
+ </para>
+ </listitem>
+ </varlistentry>
+
+ <varlistentry id="ini.exif.encode_jis">
+ <term>
+ <parameter>exif.encode_jis</parameter>
+ <type>string</type>
+ </term>
+ <listitem>
+ <para>
+ <literal>exif.encode_jis</literal> 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.
+ </para>
+ </listitem>
+ </varlistentry>
+
+ <varlistentry id="ini.exif.decode_jis_motorola">
+ <term>
+ <parameter>exif.decode_jis_motorola</parameter>
+ <type>string</type>
+ </term>
+ <listitem>
+ <para>
+ <literal>exif.decode_jis_motorola</literal> 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.
+ </para>
+ </listitem>
+ </varlistentry>
+
+ <varlistentry id="ini.exif.decode_jis_motorola">
+ <term>
+ <parameter>exif.decode_jis_intel</parameter>
+ <type>string</type>
+ </term>
+ <listitem>
+ <para>
+ <literal>exif.decode_jis_intel</literal> 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.
+ </para>
+ </listitem>
+ </varlistentry>
+
+ </variablelist>
+ </sect2>
+
</sect1>
</chapter>