2010-03-28 22:10:10 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2009-07-11 07:33:00 +00:00
|
|
|
<!-- $Revision$ -->
|
2007-06-20 22:25:43 +00:00
|
|
|
<refentry xml:id="function.imagecolormatch" xmlns="http://docbook.org/ns/docbook">
|
2007-01-13 17:11:46 +00:00
|
|
|
<refnamediv>
|
|
|
|
<refname>imagecolormatch</refname>
|
|
|
|
<refpurpose>Makes the colors of the palette version of an image more closely match the true color version</refpurpose>
|
|
|
|
</refnamediv>
|
2007-01-14 03:15:21 +00:00
|
|
|
<refsect1 role="description">
|
|
|
|
&reftitle.description;
|
2007-01-13 17:11:46 +00:00
|
|
|
<methodsynopsis>
|
|
|
|
<type>bool</type><methodname>imagecolormatch</methodname>
|
|
|
|
<methodparam><type>resource</type><parameter>image1</parameter></methodparam>
|
|
|
|
<methodparam><type>resource</type><parameter>image2</parameter></methodparam>
|
|
|
|
</methodsynopsis>
|
2008-07-30 03:05:34 +00:00
|
|
|
<para>
|
2008-08-05 07:32:05 +00:00
|
|
|
Makes the colors of the palette version of an image more closely match the true color version.
|
2008-07-30 03:05:34 +00:00
|
|
|
</para>
|
2007-01-14 03:15:21 +00:00
|
|
|
</refsect1>
|
|
|
|
<refsect1 role="parameters">
|
|
|
|
&reftitle.parameters;
|
2007-01-13 17:11:46 +00:00
|
|
|
<para>
|
2007-01-14 03:15:21 +00:00
|
|
|
<variablelist>
|
|
|
|
<varlistentry>
|
|
|
|
<term><parameter>image1</parameter></term>
|
|
|
|
<listitem>
|
|
|
|
<para>
|
2020-08-19 22:35:34 +00:00
|
|
|
A truecolor image resource.
|
2007-01-14 03:15:21 +00:00
|
|
|
</para>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
|
|
|
<varlistentry>
|
|
|
|
<term><parameter>image2</parameter></term>
|
|
|
|
<listitem>
|
|
|
|
<para>
|
2020-08-19 22:35:34 +00:00
|
|
|
A palette image resource pointing to an image that has the same
|
2008-08-05 07:32:05 +00:00
|
|
|
size as <parameter>image1</parameter>.
|
2007-01-14 03:15:21 +00:00
|
|
|
</para>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
|
|
|
</variablelist>
|
2007-01-13 17:11:46 +00:00
|
|
|
</para>
|
2007-01-14 03:15:21 +00:00
|
|
|
</refsect1>
|
|
|
|
<refsect1 role="returnvalues">
|
|
|
|
&reftitle.returnvalues;
|
2007-01-13 17:11:46 +00:00
|
|
|
<para>
|
|
|
|
&return.success;
|
|
|
|
</para>
|
2007-01-14 03:15:21 +00:00
|
|
|
</refsect1>
|
2008-08-28 19:03:16 +00:00
|
|
|
<refsect1 role="examples">
|
2008-08-29 15:49:16 +00:00
|
|
|
&reftitle.examples;
|
2008-08-28 19:03:16 +00:00
|
|
|
<example>
|
|
|
|
<title><function>imagecolormatch</function> example</title>
|
|
|
|
<programlisting role="php">
|
|
|
|
<![CDATA[
|
|
|
|
<?php
|
|
|
|
// Setup the true color and palette images
|
|
|
|
$im1 = imagecreatefrompng('./gdlogo.png');
|
|
|
|
$im2 = imagecreate(imagesx($im1), imagesy($im1));
|
|
|
|
|
|
|
|
// Add some colors to $im2
|
|
|
|
$colors = Array();
|
|
|
|
$colors[] = imagecolorallocate($im2, 255, 36, 74);
|
|
|
|
$colors[] = imagecolorallocate($im2, 40, 0, 240);
|
|
|
|
$colors[] = imagecolorallocate($im2, 82, 100, 255);
|
|
|
|
$colors[] = imagecolorallocate($im2, 84, 63, 44);
|
|
|
|
|
|
|
|
// Match these colors with the true color image
|
|
|
|
imagecolormatch($im1, $im2);
|
|
|
|
|
|
|
|
// Free from memory
|
2009-03-27 12:58:09 +00:00
|
|
|
imagedestroy($im1);
|
|
|
|
imagedestroy($im2);
|
2008-08-28 19:03:16 +00:00
|
|
|
?>
|
|
|
|
]]>
|
|
|
|
</programlisting>
|
|
|
|
</example>
|
|
|
|
</refsect1>
|
2016-08-14 11:17:37 +00:00
|
|
|
|
2007-01-14 03:15:21 +00:00
|
|
|
<refsect1 role="seealso">
|
|
|
|
&reftitle.seealso;
|
2020-10-09 13:59:15 +00:00
|
|
|
<simplelist>
|
|
|
|
<member><function>imagecreatetruecolor</function></member>
|
|
|
|
</simplelist>
|
2007-01-13 17:11:46 +00:00
|
|
|
</refsect1>
|
|
|
|
</refentry>
|
2003-05-21 23:26:05 +00:00
|
|
|
|
|
|
|
<!-- 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
|
2009-09-25 07:04:39 +00:00
|
|
|
sgml-default-dtd-file:"~/.phpdoc/manual.ced"
|
2003-05-21 23:26:05 +00:00
|
|
|
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
|
|
|
|
-->
|