|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2003-01-20 01:41 UTC] sniper@php.net
[2003-01-20 11:19 UTC] helak at hotmail dot com
[2003-01-20 17:03 UTC] sniper@php.net
[2003-01-20 18:34 UTC] helak at hotmail dot com
[2003-01-20 19:02 UTC] iliaa@php.net
[2003-01-20 21:41 UTC] sniper@php.net
[2003-01-21 00:48 UTC] helak at hotmail dot com
[2003-01-21 00:55 UTC] sniper@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2026 The PHP GroupAll rights reserved. |
Last updated: Sun Mar 08 09:00:01 2026 UTC |
I installed Apache 1.3.27 (windows binary, module) + PHP 4.3 (latest version, download, windows binary) on Windows 2000. Following script using GD library works, but enabling imagefilledellipse line causes script to crash. There is similar effect when using imagefilledarc. Imagefilledrectangle works fine. <?php header ("Content-type: image/png"); $im = @imagecreate (200, 200) or die ("Cannot Initialize new GD image stream"); $white = imagecolorallocate($im, 255, 255, 255); $black = imagecolorallocate($im, 0, 0, 0); // imagefilledellipse($im,100,100,50,50,$black); imageellipse($im,100,100,50,50,$black); imagepng ($im); imagedestroy($im); ?> Thank you for looking into it, ZB