mirror of
https://github.com/php/doc-es.git
synced 2026-03-26 08:22:08 +01:00
git-svn-id: https://svn.php.net/repository/phpdoc/es/trunk@334774 c90b9560-bf6c-de11-be94-00142212c4b1
151 lines
4.1 KiB
XML
151 lines
4.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- $Revision$ -->
|
|
<!-- EN-Revision: 14af302c9c0e561fa6f9cdd956268758ba9a89c5 Maintainer: seros Status: ready -->
|
|
<refentry xml:id="function.imageconvolution" xmlns="http://docbook.org/ns/docbook">
|
|
<refnamediv>
|
|
<refname>imageconvolution</refname>
|
|
<refpurpose>Aplicar una matriz de convolución de 3x3, usando coeficiente e índice</refpurpose>
|
|
</refnamediv>
|
|
<refsect1 role="description">
|
|
&reftitle.description;
|
|
<methodsynopsis>
|
|
<type>bool</type><methodname>imageconvolution</methodname>
|
|
<methodparam><type>resource</type><parameter>image</parameter></methodparam>
|
|
<methodparam><type>array</type><parameter>matrix</parameter></methodparam>
|
|
<methodparam><type>float</type><parameter>div</parameter></methodparam>
|
|
<methodparam><type>float</type><parameter>offset</parameter></methodparam>
|
|
</methodsynopsis>
|
|
<para>
|
|
Aplica una matriz de convolución a la imagen, usando el coeficiente y el índice
|
|
dados.
|
|
</para>
|
|
</refsect1>
|
|
<refsect1 role="parameters">
|
|
&reftitle.parameters;
|
|
<para>
|
|
<variablelist>
|
|
&gd.image.description;
|
|
<varlistentry>
|
|
<term><parameter>matrix</parameter></term>
|
|
<listitem>
|
|
<para>
|
|
Una matriz de 3x3: una matriz de tres matrices de tres valores float.
|
|
</para>
|
|
</listitem>
|
|
</varlistentry>
|
|
<varlistentry>
|
|
<term><parameter>div</parameter></term>
|
|
<listitem>
|
|
<para>
|
|
El divisor del resultado de la convolución, usado para normalización.
|
|
</para>
|
|
</listitem>
|
|
</varlistentry>
|
|
<varlistentry>
|
|
<term><parameter>offset</parameter></term>
|
|
<listitem>
|
|
<para>
|
|
Índice de color.
|
|
</para>
|
|
</listitem>
|
|
</varlistentry>
|
|
</variablelist>
|
|
</para>
|
|
</refsect1>
|
|
<refsect1 role="returnvalues">
|
|
&reftitle.returnvalues;
|
|
<para>
|
|
&return.success;
|
|
</para>
|
|
</refsect1>
|
|
<refsect1 role="examples">
|
|
&reftitle.examples;
|
|
<para>
|
|
<example>
|
|
<title>Poner en relieve el logotipo de PHP.net</title>
|
|
<programlisting role="php">
|
|
<![CDATA[
|
|
<?php
|
|
$imagen = imagecreatefromgif('http://www.php.net/images/php.gif');
|
|
|
|
$relieve = array(array(2, 0, 0), array(0, -1, 0), array(0, 0, -1));
|
|
imageconvolution($imagen, $relieve, 1, 127);
|
|
|
|
header('Content-Type: image/png');
|
|
imagepng($imagen, null, 9);
|
|
?>
|
|
]]>
|
|
</programlisting>
|
|
&example.outputs;
|
|
<mediaobject>
|
|
<alt>Salida del ejemplo : Poner en relieve el logotipo de PHP.net</alt>
|
|
<imageobject>
|
|
<imagedata fileref="en/reference/image/figures/imageconvolution_emboss.png"/>
|
|
</imageobject>
|
|
</mediaobject>
|
|
</example>
|
|
<example>
|
|
<title>Borrosidad gaussiana</title>
|
|
<programlisting role="php">
|
|
<![CDATA[
|
|
<?php
|
|
$imagen = imagecreatetruecolor(180,40);
|
|
|
|
// Escribe el texto y aplica una borrosidad gaussiana a la imagen
|
|
imagestring($imagen, 5, 10, 8, 'Gaussian Blur Text', 0x00ff00);
|
|
$gaussiana = array(array(1.0, 2.0, 1.0), array(2.0, 4.0, 2.0), array(1.0, 2.0, 1.0));
|
|
imageconvolution($imagen, $gaussiana, 16, 0);
|
|
|
|
// Reescribe el texto para compararlo
|
|
imagestring($imagen, 5, 10, 18, 'Gaussian Blur Text', 0x00ff00);
|
|
|
|
header('Content-Type: image/png');
|
|
imagepng($imagen, null, 9);
|
|
?>
|
|
]]>
|
|
</programlisting>
|
|
&example.outputs;
|
|
<mediaobject>
|
|
<alt>Salida del ejemplo : Borrosidad gaussiana</alt>
|
|
<imageobject>
|
|
<imagedata fileref="en/reference/image/figures/imageconvolution_gaussian.png"/>
|
|
</imageobject>
|
|
</mediaobject>
|
|
</example>
|
|
</para>
|
|
</refsect1>
|
|
<refsect1 role="notes">
|
|
&reftitle.notes;
|
|
¬e.bundled.gd;
|
|
</refsect1>
|
|
<refsect1 role="seealso">
|
|
&reftitle.seealso;
|
|
<para>
|
|
<simplelist>
|
|
<member><function>imagefilter</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
|
|
-->
|