svn: /phpdoc/ru/trunk/reference/image/functions/ imageaffinematrixconcat.xml

[email protected] (Andrey Gromov)
Newsgroups php.doc.ru
Message-ID <[email protected]>
rjhdby                                   Mon, 06 Jan 2020 12:29:07 +0000

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

Log:
new by anon

Changed paths:
    A   phpdoc/ru/trunk/reference/image/functions/imageaffinematrixconcat.xml

Added: phpdoc/ru/trunk/reference/image/functions/imageaffinematrixconcat.xml
===================================================================
--- phpdoc/ru/trunk/reference/image/functions/imageaffinematrixconcat.xml	                        (rev 0)
+++ phpdoc/ru/trunk/reference/image/functions/imageaffinematrixconcat.xml	2020-01-06 12:29:07 UTC (rev 348811)
@@ -0,0 +1,122 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- $Revision$ -->
+<!-- EN-Revision: 339317 Maintainer: rjhdby Status: ready -->
+<!-- Reviewed: no -->
+
+<refentry xml:id="function.imageaffinematrixconcat" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
+ <refnamediv>
+  <refname>imageaffinematrixconcat</refname>
+  <refpurpose>конкатенирует две аффинные матрицы преобразования</refpurpose>
+ </refnamediv>
+
+ <refsect1 role="description">
+  &reftitle.description;
+  <methodsynopsis>
+   <type>array</type><methodname>imageaffinematrixconcat</methodname>
+   <methodparam><type>array</type><parameter>m1</parameter></methodparam>
+   <methodparam><type>array</type><parameter>m2</parameter></methodparam>
+  </methodsynopsis>
+  <para>
+   Возвращает конкатенацию двух аффинных матриц преобразования, что полезно,
+   если несколько преобразований должны быть применены к одному и тому же изображению за один раз.
+  </para>
+ </refsect1>
+
+ <refsect1 role="parameters">
+  &reftitle.parameters;
+  <variablelist>
+   <varlistentry>
+    <term><parameter>m1</parameter></term>
+    <listitem>
+     <para>
+      Аффинная матрица преобразования (массив с ключами от
+      <literal>0</literal> до <literal>5</literal> и значениями с плавающей точкой).
+     </para>
+    </listitem>
+   </varlistentry>
+   <varlistentry>
+    <term><parameter>m2</parameter></term>
+    <listitem>
+     <para>
+      Аффинная матрица преобразования (массив с ключами от
+      <literal>0</literal> до <literal>5</literal> и значениями с плавающей точкой).
+     </para>
+    </listitem>
+   </varlistentry>
+  </variablelist>
+ </refsect1>
+
+ <refsect1 role="returnvalues">
+  &reftitle.returnvalues;
+  <para>
+   Аффинная матрица преобразования (массив с ключами от
+   <literal>0</literal> до <literal>5</literal> и значениями с плавающей запятой).
+   &return.falseforfailure;.
+  </para>
+ </refsect1>
+
+ <refsect1 role="examples">
+  &reftitle.examples;
+  <para>
+   <example>
+    <title>Пример использования <function>imageaffinematrixconcat</function> </title>
+    <programlisting role="php">
+<![CDATA[
+<?php
+$m1 = imageaffinematrixget(IMG_AFFINE_TRANSLATE, array('x' = 2, 'y' => 3));
+$m2 = imageaffinematrixget(IMG_AFFINE_SCALE, array('x' = 4, 'y' => 5));
+$matrix = imageaffinematrixconcat($m1, $m2);
+print_r($matrix);
+?>
+]]>
+    </programlisting>
+    &example.outputs;
+    <screen>
+<![CDATA[
+Array
+(
+    [0] => 4
+    [1] => 0
+    [2] => 0
+    [3] => 5
+    [4] => 8
+    [5] => 15
+)
+]]>
+    </screen>
+   </example>
+  </para>
+ </refsect1>
+
+ <refsect1 role="seealso">
+  &reftitle.seealso;
+  <para>
+   <simplelist>
+    <member><function>imageaffine</function></member>
+    <member><function>imageaffinematrixget</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/imageaffinematrixconcat.xml
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:keywords
## -0,0 +1 ##
+Id Rev Revision Date LastChangedDate LastChangedRevision Author LastChangedBy HeadURL URL
\ 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.