PHP.nl

imagesettile

imagesettile

Set the tile image for filling

true **imagesettile** GdImage $image GdImage $tile
sets the tile image to be

used by all region filling functions (such as and ) when filling with the special color . imagesettile``imagefill``imagefilledpolygon``IMG_COLOR_TILED

A tile is an image used to fill an area with a repeated pattern. GD image can be used as a tile, and by setting the transparent color index of the tile image with , a tile allows certain parts of the underlying area to shine through can be created. Anyimagecolortransparent

Let op: > You need not take special action when you are finished with a tile, but if you destroy the tile image (or let PHP destroy it), you must not use the color until you have set a new tile image! IMG_COLOR_TILED

tileThe image object to be used as a tile.

return.true.always

Voorbeeld: example

<?php
// Load an external image
$zend = imagecreatefromgif('./zend.gif');

// Create a 200x200 image
$im = imagecreatetruecolor(200, 200);

// Set the tile
imagesettile($im, $zend);

// Make the image repeat
imagefilledrectangle($im, 0, 0, 199, 199, IMG_COLOR_TILED);

// Output image to the browser
header('Content-Type: image/png');

imagepng($im);
?>