2002-04-15 00:12:54 +00:00
|
|
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
2003-06-20 13:00:52 +00:00
|
|
|
<!-- $Revision: 1.6 $ -->
|
2002-04-15 00:12:54 +00:00
|
|
|
<!-- splitted from ./en/functions/image.xml, last change in rev 1.36 -->
|
|
|
|
<refentry id="function.imagecreate">
|
|
|
|
<refnamediv>
|
|
|
|
<refname>imagecreate</refname>
|
|
|
|
<refpurpose>Create a new palette based image</refpurpose>
|
|
|
|
</refnamediv>
|
|
|
|
<refsect1>
|
|
|
|
<title>Description</title>
|
|
|
|
<methodsynopsis>
|
2002-04-18 17:13:10 +00:00
|
|
|
<type>resource</type><methodname>imagecreate</methodname>
|
2002-04-15 00:12:54 +00:00
|
|
|
<methodparam><type>int</type><parameter>x_size</parameter></methodparam>
|
|
|
|
<methodparam><type>int</type><parameter>y_size</parameter></methodparam>
|
|
|
|
</methodsynopsis>
|
|
|
|
<para>
|
|
|
|
<function>imagecreate</function> returns an image identifier
|
|
|
|
representing a blank image of size <parameter>x_size</parameter>
|
|
|
|
by <parameter>y_size</parameter>.
|
2003-01-19 03:09:48 +00:00
|
|
|
</para>
|
|
|
|
<para>
|
|
|
|
We recommend the use of <function>imagecreatetruecolor</function>.
|
|
|
|
</para>
|
|
|
|
<para>
|
2002-04-15 00:12:54 +00:00
|
|
|
<example>
|
|
|
|
<title>
|
|
|
|
Creating a new GD image stream and outputting an image.
|
|
|
|
</title>
|
|
|
|
<programlisting role="php">
|
|
|
|
<![CDATA[
|
|
|
|
<?php
|
|
|
|
header ("Content-type: image/png");
|
|
|
|
$im = @imagecreate (50, 100)
|
|
|
|
or die ("Cannot Initialize new GD image stream");
|
|
|
|
$background_color = imagecolorallocate ($im, 255, 255, 255);
|
|
|
|
$text_color = imagecolorallocate ($im, 233, 14, 91);
|
|
|
|
imagestring ($im, 1, 5, 5, "A Simple Text String", $text_color);
|
|
|
|
imagepng ($im);
|
2003-06-20 13:00:52 +00:00
|
|
|
imagedestroy ($im);
|
2002-04-15 00:12:54 +00:00
|
|
|
?>
|
|
|
|
]]>
|
|
|
|
</programlisting>
|
|
|
|
</example>
|
|
|
|
</para>
|
2003-01-19 03:09:48 +00:00
|
|
|
<para>
|
2003-05-29 20:22:13 +00:00
|
|
|
See also <function>imagedestroy</function> and
|
|
|
|
<function>imagecreatetruecolor</function>.
|
2003-01-19 03:09:48 +00:00
|
|
|
</para>
|
2002-04-15 00:12:54 +00:00
|
|
|
</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:"../../../../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
|
|
|
|
-->
|