PHP | imagesettile() Function (original) (raw)
Last Updated : 11 Jul, 2025
The imagesettile() function is an inbuilt function in PHP which is used to set the tile image for filling the area.Syntax:
bool imagesettile( image,image, image,tile )
Parameters: This function accepts two parameters as mentioned above and described below:
- $image: It is returned by one of the image creation functions, such as imagecreatetruecolor(). It is used to create size of image.
- $tile: This parameter is used to set the image resource as a tile.
Return Value: This function returns True on success or False on failure. Below programs illustrate the imagesettile() function in PHP:Program 1:
php `
`
Output:
Program 2:
php `
`
Output:
Reference: https://www.php.net/manual/en/function.imagesettile.php