|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2005-11-06 23:15 UTC] sniper@php.net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Nov 20 17:00:01 2025 UTC |
Description: ------------ I use a selfcompiled version from PHP Version 5.1.0RC5-dev Only vertical lines you can create, the horizontal lines are not visible Reproduce code: --------------- <? $pic = ImageCreate (150, 50); $bg = ImageColoralLocate($pic, 230,230,230); $dl = ImageColoralLocate($pic, 50, 50, 50); ImageDashedLine($pic, 1, 36, 149, 36, $dl); // don't work imageDashedline($pic, 37, 2, 37, 49, $dl); // works header('Content-Type: image/jpeg'); imagegif($pic); ?> Expected result: ---------------- You can only show the vertical lines!!! Actual result: -------------- PHP don't crash!!