|
|
|
php การวาดรูปวงกลม ด้วย gd อยากรู้ว่าเราจะวาดรูปวงกลม ให้ระบุตำแน่งบนหน้าจอได้ยังงัยครับ |
|
|
|
|
|
|
|
Code (PHP)
<?php
$im = ImageCreate(250,200);
$white = ImageColorAllocate ($im, 255, 255, 255);
$red = ImageColorAllocate ($im, 255, 0, 0);
$green = ImageColorAllocate ($im, 0, 255, 0);
$blue = ImageColorAllocate ($im, 0, 0, 255);
ImageFilledArc($im, 120, 100, 200, 150, 0, 90, $green, IMG_ARC_PIE);
ImageFilledArc($im, 120, 100, 200, 150, 90, 180 , $red, IMG_ARC_PIE);
ImageFilledArc($im, 120, 100, 200, 150, 180, 360 , $blue, IMG_ARC_PIE);
echo "<img src=MyResize/image.png>";
ImagePNG($im,"MyResize/image.png");
ImageDestroy($im);
?>
Go to : PHP Create Image
|
|
|
|
|
Date :
2011-07-30 08:30:37 |
By :
thaicreate |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|