Compzone.Org :: Podręcznik PHP :: imagefill
Jaki jest Twój wiek?
40 - 59
26 - 39
19 - 25
13 - 18
12 i mniej
60 i więcej
Sonda Wyniki

Add to Google

imagefill

(PHP 3, PHP 4, PHP 5)

imagefill -- Flood fill

Description

bool imagefill ( resource image, int x, int y, int color )

imagefill() performs a flood fill starting at coordinate x, y (top left is 0, 0) with color color in the image image.

Przykład 1. imagefill() example

<?php

$im 
imagecreatetruecolor(100100);

// sets background to red
$red imagecolorallocate($im25500);
imagefill($im00$red);

header('Content-type: image/png'); 
imagepng($im);
imagedestroy($im);
?>

See also imagecolorallocate().

Copyright © 2005-2006 Compzone.Org. Kopiowanie i wykorzystywanie materiałów zawartych na tej stronie bez zgody autora zabronione!