svn: /phpdoc/ru/trunk/reference/image/functions/ imagecolorset.xml imagecolorsforindex.xml imagecolorstotal.xml imagecolortransparent.xml imageconvolution.xml imagecopy.xml imagecopymerge.xml imagecopymergegray.xml imagecreate.xml imagecreatefrombmp.xml imagecreatefromgd.xml imagecreatefromgd2.xml imagecreatefromgd2part.xml imagecrop.xml imagedashedline.xml imagedestroy.xml

[email protected] (Sergey Panteleev)
Newsgroups php.doc.ru
Message-ID <[email protected]>
sergey                                   Tue, 28 Jan 2020 12:45:48 +0000

Revision: http://svn.php.net/viewvc?view=revision&revision=349043

Log:
docs(ru): Review

Changed paths:
    UU  phpdoc/ru/trunk/reference/image/functions/imagecolorset.xml
    UU  phpdoc/ru/trunk/reference/image/functions/imagecolorsforindex.xml
    U   phpdoc/ru/trunk/reference/image/functions/imagecolorstotal.xml
    U   phpdoc/ru/trunk/reference/image/functions/imagecolortransparent.xml
    U   phpdoc/ru/trunk/reference/image/functions/imageconvolution.xml
    UU  phpdoc/ru/trunk/reference/image/functions/imagecopy.xml
    U   phpdoc/ru/trunk/reference/image/functions/imagecopymerge.xml
    U   phpdoc/ru/trunk/reference/image/functions/imagecopymergegray.xml
    UU  phpdoc/ru/trunk/reference/image/functions/imagecreate.xml
    U   phpdoc/ru/trunk/reference/image/functions/imagecreatefrombmp.xml
    U   phpdoc/ru/trunk/reference/image/functions/imagecreatefromgd.xml
    U   phpdoc/ru/trunk/reference/image/functions/imagecreatefromgd2.xml
    U   phpdoc/ru/trunk/reference/image/functions/imagecreatefromgd2part.xml
    U   phpdoc/ru/trunk/reference/image/functions/imagecrop.xml
    U   phpdoc/ru/trunk/reference/image/functions/imagedashedline.xml
    UU  phpdoc/ru/trunk/reference/image/functions/imagedestroy.xml
svn-diffs-349043.txt (text/x-diff, 41.4 KB)
Modified: phpdoc/ru/trunk/reference/image/functions/imagecolorset.xml
===================================================================
--- phpdoc/ru/trunk/reference/image/functions/imagecolorset.xml	2020-01-28 08:30:39 UTC (rev 349042)
+++ phpdoc/ru/trunk/reference/image/functions/imagecolorset.xml	2020-01-28 12:45:48 UTC (rev 349043)
@@ -1,160 +1,160 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- EN-Revision: 312690 Maintainer: tmn Status: ready -->
-<!-- Reviewed: no -->
-<!-- $Revision$ -->
-<refentry xml:id="function.imagecolorset" xmlns="http://docbook.org/ns/docbook">
- <refnamediv>
-  <refname>imagecolorset</refname>
-  <refpurpose>
-   Установка набора цветов для заданного индекса палитры
-  </refpurpose>
- </refnamediv>
- <refsect1 role="description">
-  &reftitle.description;
-  <methodsynopsis>
-   <type>void</type><methodname>imagecolorset</methodname>
-   <methodparam><type>resource</type><parameter>image</parameter></methodparam>
-   <methodparam><type>int</type><parameter>index</parameter></methodparam>
-   <methodparam><type>int</type><parameter>red</parameter></methodparam>
-   <methodparam><type>int</type><parameter>green</parameter></methodparam>
-   <methodparam><type>int</type><parameter>blue</parameter></methodparam>
-   <methodparam choice="opt"><type>int</type><parameter>alpha</parameter><initializer>0</initializer></methodparam>
-  </methodsynopsis>
-  <para>
-   Эта функция устанавливает соответствие индекса в палитре заданному цвету.
-   Это полезно для создания эффекта подобного заливке цветом без осуществления
-   заливки.
-  </para>
- </refsect1>
- <refsect1 role="parameters">
-  &reftitle.parameters;
-  <para>
-   <variablelist>
-    &gd.image.description;
-    <varlistentry>
-     <term><parameter>index</parameter></term>
-     <listitem>
-      <para>
-       Индекс в палитре.
-      </para>
-     </listitem>
-    </varlistentry>
-    <varlistentry>
-     <term><parameter>red</parameter></term>
-     <listitem>
-      <para>&gd.value.red;</para>
-     </listitem>
-    </varlistentry>
-    <varlistentry>
-     <term><parameter>green</parameter></term>
-     <listitem>
-      <para>&gd.value.green;</para>
-     </listitem>
-    </varlistentry>
-    <varlistentry>
-     <term><parameter>blue</parameter></term>
-     <listitem>
-      <para>&gd.value.blue;</para>
-     </listitem>
-    </varlistentry>
-    <varlistentry>
-     <term><parameter>alpha</parameter></term>
-     <listitem>
-      <para>
-       Значение альфа компонента.
-      </para>
-     </listitem>
-    </varlistentry>
-   </variablelist>
-  </para>
- </refsect1>
- <refsect1 role="returnvalues">
-  &reftitle.returnvalues;
-  <para>
-   &return.void;
-  </para>
- </refsect1>
-
- <refsect1 role="changelog">
-  &reftitle.changelog;
-  <informaltable>
-   <tgroup cols="2">
-    <thead>
-     <row>
-      <entry>&Version;</entry>
-      <entry>&Description;</entry>
-     </row>
-    </thead>
-    <tbody>
-     <row>
-      <entry>5.4.0</entry>
-      <entry>
-       Добавлен аргумент <parameter>alpha</parameter>.
-      </entry>
-     </row>
-    </tbody>
-   </tgroup>
-  </informaltable>
- </refsect1>
-
- <refsect1 role="examples">
-  &reftitle.examples;
-  <para>
-   <example>
-    <title>Пример использования <function>imagecolorset</function></title>
-    <programlisting role="php">
-<![CDATA[
-<?php
-// Создание изображения размером 300x100
-$im = imagecreate(300, 100);
-
-// Установка красного цвета фона
-imagecolorallocate($im, 255, 0, 0);
-
-// Получение индекса цвета фона
-$bg = imagecolorat($im, 0, 0);
-
-// Установка синего цвета фона
-imagecolorset($im, $bg, 0, 0, 255);
-
-// Вывод изображения в броузер
-header('Content-Type: image/png');
-
-imagepng($im);
-imagedestroy($im);
-?>
-]]>
-    </programlisting>
-   </example>
-  </para>
- </refsect1>
- <refsect1 role="seealso">
-  &reftitle.seealso;
-  <para>
-   <simplelist>
-    <member><function>imagecolorat</function></member>
-   </simplelist>
-  </para>
- </refsect1>
-</refentry>
-
-<!-- Keep this comment at the end of the file
-Local variables:
-mode: sgml
-sgml-omittag:t
-sgml-shorttag:t
-sgml-minimize-attributes:nil
-sgml-always-quote-attributes:t
-sgml-indent-step:1
-sgml-indent-data:t
-indent-tabs-mode:nil
-sgml-parent-document:nil
-sgml-default-dtd-file:"~/.phpdoc/manual.ced"
-sgml-exposed-tags:nil
-sgml-local-catalogs:nil
-sgml-local-ecat-files:nil
-End:
-vim600: syn=xml fen fdm=syntax fdl=2 si
-vim: et tw=78 syn=sgml
-vi: ts=1 sw=1
--->
+<?xml version="1.0" encoding="utf-8"?>
+<!-- EN-Revision: 312690 Maintainer: tmn Status: ready -->
+<!-- Reviewed: yes Maintainer: sergey -->
+<!-- $Revision$ -->
+<refentry xml:id="function.imagecolorset" xmlns="http://docbook.org/ns/docbook">
+ <refnamediv>
+  <refname>imagecolorset</refname>
+  <refpurpose>
+   Установка набора цветов для заданного индекса палитры
+  </refpurpose>
+ </refnamediv>
+ <refsect1 role="description">
+  &reftitle.description;
+  <methodsynopsis>
+   <type>void</type><methodname>imagecolorset</methodname>
+   <methodparam><type>resource</type><parameter>image</parameter></methodparam>
+   <methodparam><type>int</type><parameter>index</parameter></methodparam>
+   <methodparam><type>int</type><parameter>red</parameter></methodparam>
+   <methodparam><type>int</type><parameter>green</parameter></methodparam>
+   <methodparam><type>int</type><parameter>blue</parameter></methodparam>
+   <methodparam choice="opt"><type>int</type><parameter>alpha</parameter><initializer>0</initializer></methodparam>
+  </methodsynopsis>
+  <para>
+   Функция устанавливает соответствие индекса в палитре заданному цвету.
+   Это полезно для создания эффекта подобного заливке цветом без осуществления
+   заливки.
+  </para>
+ </refsect1>
+ <refsect1 role="parameters">
+  &reftitle.parameters;
+  <para>
+   <variablelist>
+    &gd.image.description;
+    <varlistentry>
+     <term><parameter>index</parameter></term>
+     <listitem>
+      <para>
+       Индекс в палитре.
+      </para>
+     </listitem>
+    </varlistentry>
+    <varlistentry>
+     <term><parameter>red</parameter></term>
+     <listitem>
+      <para>&gd.value.red;</para>
+     </listitem>
+    </varlistentry>
+    <varlistentry>
+     <term><parameter>green</parameter></term>
+     <listitem>
+      <para>&gd.value.green;</para>
+     </listitem>
+    </varlistentry>
+    <varlistentry>
+     <term><parameter>blue</parameter></term>
+     <listitem>
+      <para>&gd.value.blue;</para>
+     </listitem>
+    </varlistentry>
+    <varlistentry>
+     <term><parameter>alpha</parameter></term>
+     <listitem>
+      <para>
+       Значение альфа компонента.
+      </para>
+     </listitem>
+    </varlistentry>
+   </variablelist>
+  </para>
+ </refsect1>
+ <refsect1 role="returnvalues">
+  &reftitle.returnvalues;
+  <para>
+   &return.void;
+  </para>
+ </refsect1>
+
+ <refsect1 role="changelog">
+  &reftitle.changelog;
+  <informaltable>
+   <tgroup cols="2">
+    <thead>
+     <row>
+      <entry>&Version;</entry>
+      <entry>&Description;</entry>
+     </row>
+    </thead>
+    <tbody>
+     <row>
+      <entry>5.4.0</entry>
+      <entry>
+       Добавлен аргумент <parameter>alpha</parameter>.
+      </entry>
+     </row>
+    </tbody>
+   </tgroup>
+  </informaltable>
+ </refsect1>
+
+ <refsect1 role="examples">
+  &reftitle.examples;
+  <para>
+   <example>
+    <title>Пример использования <function>imagecolorset</function></title>
+    <programlisting role="php">
+<![CDATA[
+<?php
+// Создание изображения размером 300x100
+$im = imagecreate(300, 100);
+
+// Установка красного цвета фона
+imagecolorallocate($im, 255, 0, 0);
+
+// Получение индекса цвета фона
+$bg = imagecolorat($im, 0, 0);
+
+// Установка синего цвета фона
+imagecolorset($im, $bg, 0, 0, 255);
+
+// Вывод изображения в браузер
+header('Content-Type: image/png');
+
+imagepng($im);
+imagedestroy($im);
+?>
+]]>
+    </programlisting>
+   </example>
+  </para>
+ </refsect1>
+ <refsect1 role="seealso">
+  &reftitle.seealso;
+  <para>
+   <simplelist>
+    <member><function>imagecolorat</function></member>
+   </simplelist>
+  </para>
+ </refsect1>
+</refentry>
+
+<!-- Keep this comment at the end of the file
+Local variables:
+mode: sgml
+sgml-omittag:t
+sgml-shorttag:t
+sgml-minimize-attributes:nil
+sgml-always-quote-attributes:t
+sgml-indent-step:1
+sgml-indent-data:t
+indent-tabs-mode:nil
+sgml-parent-document:nil
+sgml-default-dtd-file:"~/.phpdoc/manual.ced"
+sgml-exposed-tags:nil
+sgml-local-catalogs:nil
+sgml-local-ecat-files:nil
+End:
+vim600: syn=xml fen fdm=syntax fdl=2 si
+vim: et tw=78 syn=sgml
+vi: ts=1 sw=1
+-->


Property changes on: phpdoc/ru/trunk/reference/image/functions/imagecolorset.xml
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Modified: phpdoc/ru/trunk/reference/image/functions/imagecolorsforindex.xml
===================================================================
--- phpdoc/ru/trunk/reference/image/functions/imagecolorsforindex.xml	2020-01-28 08:30:39 UTC (rev 349042)
+++ phpdoc/ru/trunk/reference/image/functions/imagecolorsforindex.xml	2020-01-28 12:45:48 UTC (rev 349043)
@@ -1,117 +1,117 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- EN-Revision: 297028 Maintainer: tmn Status: ready -->
-<!-- Reviewed: no -->
-<!-- $Revision$ -->
-<refentry xml:id="function.imagecolorsforindex" xmlns="http://docbook.org/ns/docbook">
- <refnamediv>
-  <refname>imagecolorsforindex</refname>
-  <refpurpose>
-   Получение цветов, соответствующих индексу
-  </refpurpose>
- </refnamediv>
- <refsect1 role="description">
-  &reftitle.description;
-  <methodsynopsis>
-   <type>array</type><methodname>imagecolorsforindex</methodname>
-   <methodparam><type>resource</type><parameter>image</parameter></methodparam>
-   <methodparam><type>int</type><parameter>index</parameter></methodparam>
-  </methodsynopsis>
-  <para>
-   Получение цветов, соответствующих заданному индексу.
-  </para>
- </refsect1>
- <refsect1 role="parameters">
-  &reftitle.parameters;
-  <para>
-   <variablelist>
-    &gd.image.description;
-    <varlistentry>
-     <term><parameter>index</parameter></term>
-     <listitem>
-      <para>
-       Индекс цвета.
-      </para>
-     </listitem>
-    </varlistentry>
-   </variablelist>
-  </para>
- </refsect1>
- <refsect1 role="returnvalues">
-  &reftitle.returnvalues;
-  <para>
-   Возвращает ассоциативный массив с красным, зеленым, синим и альфа ключами,
-   содержащий соответствующие значения для заданного индекса цвета.
-  </para>
- </refsect1>
- <refsect1 role="examples">
-  &reftitle.examples;
-  <para>
-   <example>
-    <title>Пример использования <function>imagecolorsforindex</function></title>
-    <programlisting role="php">
-<![CDATA[
-<?php
-
-// открываем изображение
-$im = imagecreatefrompng('nexen.png');
-
-// получаем цвет
-$start_x = 40;
-$start_y = 50;
-$color_index = imagecolorat($im, $start_x, $start_y);
-
-// делаем его удобочитаемым
-$color_tran = imagecolorsforindex($im, $color_index);
-
-// что это ?
-print_r($color_tran);
-
-?>
-]]>
-    </programlisting>
-    &example.outputs.similar;
-    <screen>
-<![CDATA[
-Array
-(
-   [red] => 226
-   [green] => 222
-   [blue] => 252
-   [alpha] => 0
-)
-]]>
-    </screen>
-   </example>
-  </para>
- </refsect1>
- <refsect1 role="seealso">
-  &reftitle.seealso;
-  <para>
-   <simplelist>
-    <member><function>imagecolorat</function></member>
-    <member><function>imagecolorexact</function></member>
-   </simplelist>
-  </para>
- </refsect1>
-</refentry>
-
-<!-- Keep this comment at the end of the file
-Local variables:
-mode: sgml
-sgml-omittag:t
-sgml-shorttag:t
-sgml-minimize-attributes:nil
-sgml-always-quote-attributes:t
-sgml-indent-step:1
-sgml-indent-data:t
-indent-tabs-mode:nil
-sgml-parent-document:nil
-sgml-default-dtd-file:"~/.phpdoc/manual.ced"
-sgml-exposed-tags:nil
-sgml-local-catalogs:nil
-sgml-local-ecat-files:nil
-End:
-vim600: syn=xml fen fdm=syntax fdl=2 si
-vim: et tw=78 syn=sgml
-vi: ts=1 sw=1
--->
+<?xml version="1.0" encoding="utf-8"?>
+<!-- EN-Revision: 297028 Maintainer: tmn Status: ready -->
+<!-- Reviewed: yes Maintainer: sergey -->
+<!-- $Revision$ -->
+<refentry xml:id="function.imagecolorsforindex" xmlns="http://docbook.org/ns/docbook">
+ <refnamediv>
+  <refname>imagecolorsforindex</refname>
+  <refpurpose>
+   Получение цветов, соответствующих индексу
+  </refpurpose>
+ </refnamediv>
+ <refsect1 role="description">
+  &reftitle.description;
+  <methodsynopsis>
+   <type>array</type><methodname>imagecolorsforindex</methodname>
+   <methodparam><type>resource</type><parameter>image</parameter></methodparam>
+   <methodparam><type>int</type><parameter>index</parameter></methodparam>
+  </methodsynopsis>
+  <para>
+   Получение цветов, соответствующих заданному индексу.
+  </para>
+ </refsect1>
+ <refsect1 role="parameters">
+  &reftitle.parameters;
+  <para>
+   <variablelist>
+    &gd.image.description;
+    <varlistentry>
+     <term><parameter>index</parameter></term>
+     <listitem>
+      <para>
+       Индекс цвета.
+      </para>
+     </listitem>
+    </varlistentry>
+   </variablelist>
+  </para>
+ </refsect1>
+ <refsect1 role="returnvalues">
+  &reftitle.returnvalues;
+  <para>
+   Возвращает ассоциативный массив с красным, зеленым, синим и альфа ключами,
+   содержащий соответствующие значения для заданного индекса цвета.
+  </para>
+ </refsect1>
+ <refsect1 role="examples">
+  &reftitle.examples;
+  <para>
+   <example>
+    <title>Пример использования <function>imagecolorsforindex</function></title>
+    <programlisting role="php">
+<![CDATA[
+<?php
+
+// открываем изображение
+$im = imagecreatefrompng('nexen.png');
+
+// получаем цвет
+$start_x = 40;
+$start_y = 50;
+$color_index = imagecolorat($im, $start_x, $start_y);
+
+// делаем его удобочитаемым
+$color_tran = imagecolorsforindex($im, $color_index);
+
+// что здесь ?
+print_r($color_tran);
+
+?>
+]]>
+    </programlisting>
+    &example.outputs.similar;
+    <screen>
+<![CDATA[
+Array
+(
+   [red] => 226
+   [green] => 222
+   [blue] => 252
+   [alpha] => 0
+)
+]]>
+    </screen>
+   </example>
+  </para>
+ </refsect1>
+ <refsect1 role="seealso">
+  &reftitle.seealso;
+  <para>
+   <simplelist>
+    <member><function>imagecolorat</function></member>
+    <member><function>imagecolorexact</function></member>
+   </simplelist>
+  </para>
+ </refsect1>
+</refentry>
+
+<!-- Keep this comment at the end of the file
+Local variables:
+mode: sgml
+sgml-omittag:t
+sgml-shorttag:t
+sgml-minimize-attributes:nil
+sgml-always-quote-attributes:t
+sgml-indent-step:1
+sgml-indent-data:t
+indent-tabs-mode:nil
+sgml-parent-document:nil
+sgml-default-dtd-file:"~/.phpdoc/manual.ced"
+sgml-exposed-tags:nil
+sgml-local-catalogs:nil
+sgml-local-ecat-files:nil
+End:
+vim600: syn=xml fen fdm=syntax fdl=2 si
+vim: et tw=78 syn=sgml
+vi: ts=1 sw=1
+-->


Property changes on: phpdoc/ru/trunk/reference/image/functions/imagecolorsforindex.xml
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Modified: phpdoc/ru/trunk/reference/image/functions/imagecolorstotal.xml
===================================================================
--- phpdoc/ru/trunk/reference/image/functions/imagecolorstotal.xml	2020-01-28 08:30:39 UTC (rev 349042)
+++ phpdoc/ru/trunk/reference/image/functions/imagecolorstotal.xml	2020-01-28 12:45:48 UTC (rev 349043)
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="utf-8"?>
 <!-- EN-Revision: 344588 Maintainer: tmn Status: ready -->
-<!-- Reviewed: no -->
+<!-- Reviewed: yes Maintainer: sergey -->
 <!-- $Revision$ -->
 <refentry xml:id="function.imagecolorstotal" xmlns="http://docbook.org/ns/docbook">
  <refnamediv>
@@ -58,7 +58,7 @@
     &example.outputs.similar;
     <screen>
 <![CDATA[
-Total colors in image: 128
+Всего цветов в изображении: 128
 ]]>
     </screen>
    </example>

Modified: phpdoc/ru/trunk/reference/image/functions/imagecolortransparent.xml
===================================================================
--- phpdoc/ru/trunk/reference/image/functions/imagecolortransparent.xml	2020-01-28 08:30:39 UTC (rev 349042)
+++ phpdoc/ru/trunk/reference/image/functions/imagecolortransparent.xml	2020-01-28 12:45:48 UTC (rev 349043)
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="utf-8"?>
 <!-- EN-Revision: 346101 Maintainer: tmn Status: ready -->
-<!-- Reviewed: no -->
+<!-- Reviewed: yes Maintainer: sergey -->
 <!-- $Revision$ -->
 <refentry xml:id="function.imagecolortransparent" xmlns="http://docbook.org/ns/docbook">
  <refnamediv>

Modified: phpdoc/ru/trunk/reference/image/functions/imageconvolution.xml
===================================================================
--- phpdoc/ru/trunk/reference/image/functions/imageconvolution.xml	2020-01-28 08:30:39 UTC (rev 349042)
+++ phpdoc/ru/trunk/reference/image/functions/imageconvolution.xml	2020-01-28 12:45:48 UTC (rev 349043)
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="utf-8"?>
 <!-- EN-Revision: 339877 Maintainer: tmn Status: ready -->
-<!-- Reviewed: no -->
+<!-- Reviewed: yes Maintainer: sergey -->
 <!-- $Revision$ -->
 <refentry xml:id="function.imageconvolution" xmlns="http://docbook.org/ns/docbook">
  <refnamediv>
@@ -32,7 +32,7 @@
      <term><parameter>matrix</parameter></term>
      <listitem>
       <para>
-       Матрица 3x3: массив из трех массивов по 3 значения с плавающей точкой в
+       Матрица 3x3: массив из трех массивов по 3 значения с плавающей запятой в
        каждом.
       </para>
      </listitem>
@@ -121,7 +121,7 @@
  <refsect1 role="notes">
   &reftitle.notes;
   <para>
-   Эта функция требует GD 2.1.0 или выше.
+   Для работы функции требуется GD 2.1.0 или выше.
   </para>
  </refsect1>
  <refsect1 role="seealso">

Modified: phpdoc/ru/trunk/reference/image/functions/imagecopy.xml
===================================================================
--- phpdoc/ru/trunk/reference/image/functions/imagecopy.xml	2020-01-28 08:30:39 UTC (rev 349042)
+++ phpdoc/ru/trunk/reference/image/functions/imagecopy.xml	2020-01-28 12:45:48 UTC (rev 349043)
@@ -1,156 +1,156 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- EN-Revision: 309972 Maintainer: tmn Status: ready -->
-<!-- Reviewed: no -->
-<!-- $Revision$ -->
-<refentry xml:id="function.imagecopy" xmlns="http://docbook.org/ns/docbook">
- <refnamediv>
-  <refname>imagecopy</refname>
-  <refpurpose>Копирование части изображения</refpurpose>
- </refnamediv>
- <refsect1 role="description">
-  &reftitle.description;
-  <methodsynopsis>
-   <type>bool</type><methodname>imagecopy</methodname>
-   <methodparam><type>resource</type><parameter>dst_im</parameter></methodparam>
-   <methodparam><type>resource</type><parameter>src_im</parameter></methodparam>
-   <methodparam><type>int</type><parameter>dst_x</parameter></methodparam>
-   <methodparam><type>int</type><parameter>dst_y</parameter></methodparam>
-   <methodparam><type>int</type><parameter>src_x</parameter></methodparam>
-   <methodparam><type>int</type><parameter>src_y</parameter></methodparam>
-   <methodparam><type>int</type><parameter>src_w</parameter></methodparam>
-   <methodparam><type>int</type><parameter>src_h</parameter></methodparam>
-  </methodsynopsis>
-  <para>
-   Копирует часть <parameter>src_im</parameter> в <parameter>dst_im</parameter>,
-   начиная с координат x, y <parameter>src_x</parameter>,
-   <parameter>src_y </parameter> с шириной <parameter>src_w</parameter> и высотой
-   <parameter>src_h</parameter>. Скопированная часть помещается на координаты
-   <parameter>dst_x</parameter> и <parameter>dst_y</parameter>.
-  </para>
- </refsect1>
- <refsect1 role="parameters">
-  &reftitle.parameters;
-  <para>
-   <variablelist>
-    <varlistentry>
-     <term><parameter>dst_im</parameter></term>
-     <listitem>
-      <para>&gd.image.destination;</para>
-     </listitem>
-    </varlistentry>
-    <varlistentry>
-     <term><parameter>src_im</parameter></term>
-     <listitem>
-      <para>&gd.image.source;</para>
-     </listitem>
-    </varlistentry>
-    <varlistentry>
-     <term><parameter>dst_x</parameter></term>
-     <listitem>
-      <para>
-       x-координата результирующего изображения.
-      </para>
-     </listitem>
-    </varlistentry>
-    <varlistentry>
-     <term><parameter>dst_y</parameter></term>
-     <listitem>
-      <para>
-       y-координата результирующего изображения.
-      </para>
-     </listitem>
-    </varlistentry>
-    <varlistentry>
-     <term><parameter>src_x</parameter></term>
-     <listitem>
-      <para>
-       x-координата исходного изображения.
-      </para>
-     </listitem>
-    </varlistentry>
-    <varlistentry>
-     <term><parameter>src_y</parameter></term>
-     <listitem>
-      <para>
-       y-координата исходного изображения.
-      </para>
-     </listitem>
-    </varlistentry>
-    <varlistentry>
-     <term><parameter>src_w</parameter></term>
-     <listitem>
-      <para>&gd.source.width;</para>
-     </listitem>
-    </varlistentry>
-    <varlistentry>
-     <term><parameter>src_h</parameter></term>
-     <listitem>
-      <para>&gd.source.height;</para>
-     </listitem>
-    </varlistentry>
-   </variablelist>
-  </para>
- </refsect1>
- <refsect1 role="returnvalues">
-  &reftitle.returnvalues;
-  <para>
-   &return.success;
-  </para>
- </refsect1>
- <refsect1 role="examples">
-  &reftitle.examples;
-  <para>
-
-  <example>
-   <title>Обрезка логотипа PHP.net</title>
-   <programlisting role="php">
-<![CDATA[
-<?php
-// Создание изображений
-$src = imagecreatefromgif('php.gif');
-$dest = imagecreatetruecolor(80, 40);
-
-// Копирование
-imagecopy($dest, $src, 0, 0, 20, 13, 80, 40);
-
-// Вывод и освобождение памяти
-header('Content-Type: image/gif');
-imagegif($dest);
-
-imagedestroy($dest);
-imagedestroy($src);
-?>
-]]>
-   </programlisting>
-   &example.outputs.similar;
-   <mediaobject>
-    <alt>Вывод примера: Обрезка логотипа PHP.net</alt>
-     <imageobject>
-      <imagedata fileref="en/reference/image/figures/imagecopy.gif"/>
-     </imageobject>
-    </mediaobject>
-   </example>
-  </para>
- </refsect1>
-</refentry>
-
-<!-- Keep this comment at the end of the file
-Local variables:
-mode: sgml
-sgml-omittag:t
-sgml-shorttag:t
-sgml-minimize-attributes:nil
-sgml-always-quote-attributes:t
-sgml-indent-step:1
-sgml-indent-data:t
-indent-tabs-mode:nil
-sgml-parent-document:nil
-sgml-default-dtd-file:"~/.phpdoc/manual.ced"
-sgml-exposed-tags:nil
-sgml-local-catalogs:nil
-sgml-local-ecat-files:nil
-End:
-vim600: syn=xml fen fdm=syntax fdl=2 si
-vim: et tw=78 syn=sgml
-vi: ts=1 sw=1
--->
+<?xml version="1.0" encoding="utf-8"?>
+<!-- EN-Revision: 309972 Maintainer: tmn Status: ready -->
+<!-- Reviewed: yes Maintainer: sergey -->
+<!-- $Revision$ -->
+<refentry xml:id="function.imagecopy" xmlns="http://docbook.org/ns/docbook">
+ <refnamediv>
+  <refname>imagecopy</refname>
+  <refpurpose>Копирование части изображения</refpurpose>
+ </refnamediv>
+ <refsect1 role="description">
+  &reftitle.description;
+  <methodsynopsis>
+   <type>bool</type><methodname>imagecopy</methodname>
+   <methodparam><type>resource</type><parameter>dst_im</parameter></methodparam>
+   <methodparam><type>resource</type><parameter>src_im</parameter></methodparam>
+   <methodparam><type>int</type><parameter>dst_x</parameter></methodparam>
+   <methodparam><type>int</type><parameter>dst_y</parameter></methodparam>
+   <methodparam><type>int</type><parameter>src_x</parameter></methodparam>
+   <methodparam><type>int</type><parameter>src_y</parameter></methodparam>
+   <methodparam><type>int</type><parameter>src_w</parameter></methodparam>
+   <methodparam><type>int</type><parameter>src_h</parameter></methodparam>
+  </methodsynopsis>
+  <para>
+   Копирует часть <parameter>src_im</parameter> в <parameter>dst_im</parameter>,
+   начиная с координат x, y <parameter>src_x</parameter>,
+   <parameter>src_y </parameter> с шириной <parameter>src_w</parameter> и высотой
+   <parameter>src_h</parameter>. Скопированная часть помещается на координаты
+   <parameter>dst_x</parameter> и <parameter>dst_y</parameter>.
+  </para>
+ </refsect1>
+ <refsect1 role="parameters">
+  &reftitle.parameters;
+  <para>
+   <variablelist>
+    <varlistentry>
+     <term><parameter>dst_im</parameter></term>
+     <listitem>
+      <para>&gd.image.destination;</para>
+     </listitem>
+    </varlistentry>
+    <varlistentry>
+     <term><parameter>src_im</parameter></term>
+     <listitem>
+      <para>&gd.image.source;</para>
+     </listitem>
+    </varlistentry>
+    <varlistentry>
+     <term><parameter>dst_x</parameter></term>
+     <listitem>
+      <para>
+       x-координата результирующего изображения.
+      </para>
+     </listitem>
+    </varlistentry>
+    <varlistentry>
+     <term><parameter>dst_y</parameter></term>
+     <listitem>
+      <para>
+       y-координата результирующего изображения.
+      </para>
+     </listitem>
+    </varlistentry>
+    <varlistentry>
+     <term><parameter>src_x</parameter></term>
+     <listitem>
+      <para>
+       x-координата исходного изображения.
+      </para>
+     </listitem>
+    </varlistentry>
+    <varlistentry>
+     <term><parameter>src_y</parameter></term>
+     <listitem>
+      <para>
+       y-координата исходного изображения.
+      </para>
+     </listitem>
+    </varlistentry>
+    <varlistentry>
+     <term><parameter>src_w</parameter></term>
+     <listitem>
+      <para>&gd.source.width;</para>
+     </listitem>
+    </varlistentry>
+    <varlistentry>
+     <term><parameter>src_h</parameter></term>
+     <listitem>
+      <para>&gd.source.height;</para>
+     </listitem>
+    </varlistentry>
+   </variablelist>
+  </para>
+ </refsect1>
+ <refsect1 role="returnvalues">
+  &reftitle.returnvalues;
+  <para>
+   &return.success;
+  </para>
+ </refsect1>
+ <refsect1 role="examples">
+  &reftitle.examples;
+  <para>
+
+  <example>
+   <title>Обрезка логотипа PHP.net</title>
+   <programlisting role="php">
+<![CDATA[
+<?php
+// Создание изображений
+$src = imagecreatefromgif('php.gif');
+$dest = imagecreatetruecolor(80, 40);
+
+// Копирование
+imagecopy($dest, $src, 0, 0, 20, 13, 80, 40);
+
+// Вывод и освобождение памяти
+header('Content-Type: image/gif');
+imagegif($dest);
+
+imagedestroy($dest);
+imagedestroy($src);
+?>
+]]>
+   </programlisting>
+   &example.outputs.similar;
+   <mediaobject>
+    <alt>Вывод примера: Обрезка логотипа PHP.net</alt>
+     <imageobject>
+      <imagedata fileref="en/reference/image/figures/imagecopy.gif"/>
+     </imageobject>
+    </mediaobject>
+   </example>
+  </para>
+ </refsect1>
+</refentry>
+
+<!-- Keep this comment at the end of the file
+Local variables:
+mode: sgml
+sgml-omittag:t
+sgml-shorttag:t
+sgml-minimize-attributes:nil
+sgml-always-quote-attributes:t
+sgml-indent-step:1
+sgml-indent-data:t
+indent-tabs-mode:nil
+sgml-parent-document:nil
+sgml-default-dtd-file:"~/.phpdoc/manual.ced"
+sgml-exposed-tags:nil
+sgml-local-catalogs:nil
+sgml-local-ecat-files:nil
+End:
+vim600: syn=xml fen fdm=syntax fdl=2 si
+vim: et tw=78 syn=sgml
+vi: ts=1 sw=1
+-->


Property changes on: phpdoc/ru/trunk/reference/image/functions/imagecopy.xml
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Modified: phpdoc/ru/trunk/reference/image/functions/imagecopymerge.xml
===================================================================
--- phpdoc/ru/trunk/reference/image/functions/imagecopymerge.xml	2020-01-28 08:30:39 UTC (rev 349042)
+++ phpdoc/ru/trunk/reference/image/functions/imagecopymerge.xml	2020-01-28 12:45:48 UTC (rev 349043)
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="utf-8"?>
 <!-- EN-Revision: 328331 Maintainer: tmn Status: ready -->
-<!-- Reviewed: no -->
+<!-- Reviewed: yes Maintainer: sergey -->
 <!-- $Revision$ -->
 <refentry xml:id="function.imagecopymerge" xmlns="http://docbook.org/ns/docbook">
  <refnamediv>

Modified: phpdoc/ru/trunk/reference/image/functions/imagecopymergegray.xml
===================================================================
--- phpdoc/ru/trunk/reference/image/functions/imagecopymergegray.xml	2020-01-28 08:30:39 UTC (rev 349042)
+++ phpdoc/ru/trunk/reference/image/functions/imagecopymergegray.xml	2020-01-28 12:45:48 UTC (rev 349043)
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="utf-8"?>
 <!-- EN-Revision: 328331 Maintainer: tmn Status: ready -->
-<!-- Reviewed: no -->
+<!-- Reviewed: yes Maintainer: sergey -->
 <!-- $Revision$ -->
 <refentry xml:id="function.imagecopymergegray" xmlns="http://docbook.org/ns/docbook">
  <refnamediv>

Modified: phpdoc/ru/trunk/reference/image/functions/imagecreate.xml
===================================================================
--- phpdoc/ru/trunk/reference/image/functions/imagecreate.xml	2020-01-28 08:30:39 UTC (rev 349042)
+++ phpdoc/ru/trunk/reference/image/functions/imagecreate.xml	2020-01-28 12:45:48 UTC (rev 349043)
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="utf-8"?>
 <!-- EN-Revision: 331628 Maintainer: tmn Status: ready -->
-<!-- Reviewed: no -->
+<!-- Reviewed: yes Maintainer: sergey -->
 <!-- $Revision$ -->
 <refentry xml:id="function.imagecreate" xmlns="http://docbook.org/ns/docbook">
  <refnamediv>
@@ -69,7 +69,7 @@
     or die("Невозможно создать поток изображения");
 $background_color = imagecolorallocate($im, 0, 0, 0);
 $text_color = imagecolorallocate($im, 233, 14, 91);
-imagestring($im, 1, 5, 5,  "Простая Текстовая Строка", $text_color);
+imagestring($im, 1, 5, 5,  "A Simple Text String", $text_color);
 imagepng($im);
 imagedestroy($im);
 ?>


Property changes on: phpdoc/ru/trunk/reference/image/functions/imagecreate.xml
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Modified: phpdoc/ru/trunk/reference/image/functions/imagecreatefrombmp.xml
===================================================================
--- phpdoc/ru/trunk/reference/image/functions/imagecreatefrombmp.xml	2020-01-28 08:30:39 UTC (rev 349042)
+++ phpdoc/ru/trunk/reference/image/functions/imagecreatefrombmp.xml	2020-01-28 12:45:48 UTC (rev 349043)
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="utf-8"?>
 <!-- $Revision$ -->
 <!-- EN-Revision: 341594 Maintainer: lex Status: ready -->
-<!-- Reviewed: no -->
+<!-- Reviewed: yes Maintainer: sergey -->

 <refentry xml:id="function.imagecreatefrombmp" xmlns="http://docbook.org/ns/docbook">
  <refnamediv>

Modified: phpdoc/ru/trunk/reference/image/functions/imagecreatefromgd.xml
===================================================================
--- phpdoc/ru/trunk/reference/image/functions/imagecreatefromgd.xml	2020-01-28 08:30:39 UTC (rev 349042)
+++ phpdoc/ru/trunk/reference/image/functions/imagecreatefromgd.xml	2020-01-28 12:45:48 UTC (rev 349043)
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="utf-8"?>
 <!-- EN-Revision: 336340 Maintainer: tmn Status: ready -->
-<!-- Reviewed: no -->
+<!-- Reviewed: yes Maintainer: sergey -->
 <!-- $Revision$ -->
 <refentry xml:id='function.imagecreatefromgd' xmlns="http://docbook.org/ns/docbook">
  <refnamediv>

Modified: phpdoc/ru/trunk/reference/image/functions/imagecreatefromgd2.xml
===================================================================
--- phpdoc/ru/trunk/reference/image/functions/imagecreatefromgd2.xml	2020-01-28 08:30:39 UTC (rev 349042)
+++ phpdoc/ru/trunk/reference/image/functions/imagecreatefromgd2.xml	2020-01-28 12:45:48 UTC (rev 349043)
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="utf-8"?>
 <!-- EN-Revision: 339875 Maintainer: tmn Status: ready -->
-<!-- Reviewed: no -->
+<!-- Reviewed: yes Maintainer: sergey -->
 <!-- $Revision$ -->
 <refentry xml:id='function.imagecreatefromgd2' xmlns="http://docbook.org/ns/docbook">
  <refnamediv>

Modified: phpdoc/ru/trunk/reference/image/functions/imagecreatefromgd2part.xml
===================================================================
--- phpdoc/ru/trunk/reference/image/functions/imagecreatefromgd2part.xml	2020-01-28 08:30:39 UTC (rev 349042)
+++ phpdoc/ru/trunk/reference/image/functions/imagecreatefromgd2part.xml	2020-01-28 12:45:48 UTC (rev 349043)
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="utf-8"?>
 <!-- EN-Revision: 339875 Maintainer: tmn Status: ready -->
-<!-- Reviewed: no -->
+<!-- Reviewed: yes Maintainer: sergey -->
 <!-- $Revision$ -->
 <refentry xml:id='function.imagecreatefromgd2part' xmlns="http://docbook.org/ns/docbook">
  <refnamediv>

Modified: phpdoc/ru/trunk/reference/image/functions/imagecrop.xml
===================================================================
--- phpdoc/ru/trunk/reference/image/functions/imagecrop.xml	2020-01-28 08:30:39 UTC (rev 349042)
+++ phpdoc/ru/trunk/reference/image/functions/imagecrop.xml	2020-01-28 12:45:48 UTC (rev 349043)
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="utf-8"?>
 <!-- $Revision$ -->
 <!-- EN-Revision: 344334 Maintainer: lex Status: ready -->
-<!-- Reviewed: no -->
+<!-- Reviewed: yes Maintainer: sergey -->

 <refentry xml:id="function.imagecrop" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
  <refnamediv>
@@ -43,7 +43,7 @@
  <refsect1 role="returnvalues">
   &reftitle.returnvalues;
   <para>
-   Возвращает обрезанный ресурс изображения в случае успеха&return.falseforfailure;.
+   Возвращает обрезанный ресурс изображения в случае успешного выполнения&return.falseforfailure;.
   </para>
  </refsect1>


Modified: phpdoc/ru/trunk/reference/image/functions/imagedashedline.xml
===================================================================
--- phpdoc/ru/trunk/reference/image/functions/imagedashedline.xml	2020-01-28 08:30:39 UTC (rev 349042)
+++ phpdoc/ru/trunk/reference/image/functions/imagedashedline.xml	2020-01-28 12:45:48 UTC (rev 349043)
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="utf-8"?>
 <!-- EN-Revision: 344594 Maintainer: tmn Status: ready -->
-<!-- Reviewed: no -->
+<!-- Reviewed: yes Maintainer: sergey -->
 <!-- $Revision$ -->
 <refentry xml:id="function.imagedashedline" xmlns="http://docbook.org/ns/docbook">
  <refnamediv>
@@ -19,7 +19,7 @@
    <methodparam><type>int</type><parameter>color</parameter></methodparam>
   </methodsynopsis>
   <para>
-   Эта функция устарела. Используйте сочетание функций
+   Функция устарела. Используйте сочетание функций
    <function>imagesetstyle</function> и <function>imageline</function>.
   </para>
  </refsect1>
@@ -32,7 +32,7 @@
      <term><parameter>x1</parameter></term>
      <listitem>
       <para>
-       Верхняя левая x координата.
+       Верхняя левая x-координата.
       </para>
      </listitem>
     </varlistentry>
@@ -40,7 +40,7 @@
      <term><parameter>y1</parameter></term>
      <listitem>
       <para>
-       Верхняя левая y координата. 0, 0 - верхний левый угол изображения.
+       Верхняя левая y-координата. 0, 0 - верхний левый угол изображения.
       </para>
      </listitem>
     </varlistentry>

Modified: phpdoc/ru/trunk/reference/image/functions/imagedestroy.xml
===================================================================
--- phpdoc/ru/trunk/reference/image/functions/imagedestroy.xml	2020-01-28 08:30:39 UTC (rev 349042)
+++ phpdoc/ru/trunk/reference/image/functions/imagedestroy.xml	2020-01-28 12:45:48 UTC (rev 349043)
@@ -1,77 +1,77 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- EN-Revision: 297028 Maintainer: tmn Status: ready -->
-<!-- Reviewed: no -->
-<!-- $Revision$ -->
-<refentry xml:id="function.imagedestroy" xmlns="http://docbook.org/ns/docbook">
- <refnamediv>
-  <refname>imagedestroy</refname>
-  <refpurpose>Уничтожение изображения</refpurpose>
- </refnamediv>
- <refsect1 role="description">
-  &reftitle.description;
-  <methodsynopsis>
-   <type>bool</type><methodname>imagedestroy</methodname>
-   <methodparam><type>resource</type><parameter>image</parameter></methodparam>
-  </methodsynopsis>
-  <para>
-   <function>imagedestroy</function> освобождает память, занятую изображением
-   <parameter>image</parameter>.
-  </para>
- </refsect1>
- <refsect1 role="parameters">
-  &reftitle.parameters;
-  <para>
-   <variablelist>
-    &gd.image.description;
-   </variablelist>
-  </para>
- </refsect1>
- <refsect1 role="returnvalues">
-  &reftitle.returnvalues;
-  <para>
-   &return.success;
-  </para>
- </refsect1>
- <refsect1 role="examples">
-  &reftitle.examples;
-  <para>
-   <example>
-    <title>Пример использования <function>imagedestroy</function></title>
-    <programlisting role="php">
-<![CDATA[
-<?php
-// Создание изображения 100 x 100
-$im = imagecreatetruecolor(100, 100);
-
-// изменение или сохранение изображения
-
-// освобождение памяти
-imagedestroy($im);
-?>
-]]>
-    </programlisting>
-   </example>
-  </para>
- </refsect1>
-</refentry>
-
-<!-- Keep this comment at the end of the file
-Local variables:
-mode: sgml
-sgml-omittag:t
-sgml-shorttag:t
-sgml-minimize-attributes:nil
-sgml-always-quote-attributes:t
-sgml-indent-step:1
-sgml-indent-data:t
-indent-tabs-mode:nil
-sgml-parent-document:nil
-sgml-default-dtd-file:"~/.phpdoc/manual.ced"
-sgml-exposed-tags:nil
-sgml-local-catalogs:nil
-sgml-local-ecat-files:nil
-End:
-vim600: syn=xml fen fdm=syntax fdl=2 si
-vim: et tw=78 syn=sgml
-vi: ts=1 sw=1
--->
+<?xml version="1.0" encoding="utf-8"?>
+<!-- EN-Revision: 297028 Maintainer: tmn Status: ready -->
+<!-- Reviewed: yes Maintainer: sergey -->
+<!-- $Revision$ -->
+<refentry xml:id="function.imagedestroy" xmlns="http://docbook.org/ns/docbook">
+ <refnamediv>
+  <refname>imagedestroy</refname>
+  <refpurpose>Уничтожение изображения</refpurpose>
+ </refnamediv>
+ <refsect1 role="description">
+  &reftitle.description;
+  <methodsynopsis>
+   <type>bool</type><methodname>imagedestroy</methodname>
+   <methodparam><type>resource</type><parameter>image</parameter></methodparam>
+  </methodsynopsis>
+  <para>
+   <function>imagedestroy</function> освобождает память, занятую изображением
+   <parameter>image</parameter>.
+  </para>
+ </refsect1>
+ <refsect1 role="parameters">
+  &reftitle.parameters;
+  <para>
+   <variablelist>
+    &gd.image.description;
+   </variablelist>
+  </para>
+ </refsect1>
+ <refsect1 role="returnvalues">
+  &reftitle.returnvalues;
+  <para>
+   &return.success;
+  </para>
+ </refsect1>
+ <refsect1 role="examples">
+  &reftitle.examples;
+  <para>
+   <example>
+    <title>Пример использования <function>imagedestroy</function></title>
+    <programlisting role="php">
+<![CDATA[
+<?php
+// Создание изображения 100 x 100
+$im = imagecreatetruecolor(100, 100);
+
+// изменение или сохранение изображения
+
+// освобождение памяти
+imagedestroy($im);
+?>
+]]>
+    </programlisting>
+   </example>
+  </para>
+ </refsect1>
+</refentry>
+
+<!-- Keep this comment at the end of the file
+Local variables:
+mode: sgml
+sgml-omittag:t
+sgml-shorttag:t
+sgml-minimize-attributes:nil
+sgml-always-quote-attributes:t
+sgml-indent-step:1
+sgml-indent-data:t
+indent-tabs-mode:nil
+sgml-parent-document:nil
+sgml-default-dtd-file:"~/.phpdoc/manual.ced"
+sgml-exposed-tags:nil
+sgml-local-catalogs:nil
+sgml-local-ecat-files:nil
+End:
+vim600: syn=xml fen fdm=syntax fdl=2 si
+vim: et tw=78 syn=sgml
+vi: ts=1 sw=1
+-->


Property changes on: phpdoc/ru/trunk/reference/image/functions/imagedestroy.xml
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.