php-doc-en/reference/image/functions/imagecreatefromwbmp.xml
Sander Roobol ce2e02e8b4 GD uses resources...
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@78672 c90b9560-bf6c-de11-be94-00142212c4b1
2002-04-18 17:13:10 +00:00

75 lines
2.3 KiB
XML

<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.3 $ -->
<!-- splitted from ./en/functions/image.xml, last change in rev 1.30 -->
<refentry id="function.imagecreatefromwbmp">
<refnamediv>
<refname>imagecreatefromwbmp</refname>
<refpurpose>Create a new image from file or URL</refpurpose>
</refnamediv>
<refsect1>
<title>Description</title>
<methodsynopsis>
<type>resource</type><methodname>imagecreatefromwbmp</methodname>
<methodparam><type>string</type><parameter>filename</parameter></methodparam>
</methodsynopsis>
<para>
<function>imagecreatefromwbmp</function> returns an image identifier
representing the image obtained from the given filename.
</para>
<para>
<function>imagecreatefromwbmp</function> returns an empty string
on failure. It also outputs an error message, which unfortunately
displays as a broken link in a browser. To ease debugging the
following example will produce an error <acronym>WBMP</acronym>:
<example>
<title>
Example to handle an error during creation (courtesy
vic@zymsys.com)
</title>
<programlisting role="php">
<![CDATA[
function LoadWBMP ($imgname) {
$im = @imagecreatefromwbmp ($imgname); /* Attempt to open */
if (!$im) { /* See if it failed */
$im = imagecreate (20, 20); /* Create a blank image */
$bgc = imagecolorallocate ($im, 255, 255, 255);
$tc = imagecolorallocate ($im, 0, 0, 0);
imagefilledrectangle ($im, 0, 0, 10, 10, $bgc);
/* Output an errmsg */
imagestring ($im, 1, 5, 5, "Error loading $imgname", $tc);
}
return $im;
}
]]>
</programlisting>
</example>
</para>
<note>
<para>
WBMP support is only available if PHP was compiled
against GD-1.8 or later.
</para>
</note>
</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
-->