mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
Fix typo (closes bug #34555)
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@196415 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
559ddac094
commit
e5085108e5
1 changed files with 2 additions and 2 deletions
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.11 $ -->
|
||||
<!-- $Revision: 1.12 $ -->
|
||||
<!-- splitted from ./en/functions/image.xml, last change in rev 1.4 -->
|
||||
<refentry id="function.imagecreatefromjpeg">
|
||||
<refnamediv>
|
||||
|
@ -30,7 +30,7 @@ function LoadJpeg($imgname)
|
|||
{
|
||||
$im = @imagecreatefromjpeg($imgname); /* Attempt to open */
|
||||
if (!$im) { /* See if it failed */
|
||||
$im = imagecreatruecolor(150, 30); /* Create a blank image */
|
||||
$im = imagecreateruecolor(150, 30); /* Create a blank image */
|
||||
$bgc = imagecolorallocate($im, 255, 255, 255);
|
||||
$tc = imagecolorallocate($im, 0, 0, 0);
|
||||
imagefilledrectangle($im, 0, 0, 150, 30, $bgc);
|
||||
|
|
Loading…
Reference in a new issue