imagesettile()函数是PHP中的内置函数,用于设置平铺图像以填充区域。
用法:
bool imagesettile( $image, $tile )
参数:该函数接受上述和以下描述的两个参数:
- $image:它由图像创建函数之一(例如imagecreatetruecolor())返回。它用于创建图像的尺寸。
- $tile:此参数用于将图像资源设置为图块。
返回值:如果成功,此函数返回True;如果失败,则返回False。
以下示例程序旨在说明PHP中的imagesettile()函数:
示例1:
<?php
// Load a png file
$image = imagecreatefrompng(
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-9.png');
// Create an image of 400x250 size
$im = imagecreatetruecolor(500, 250);
// Set the image tile
imagesettile($im, $image);
// Make the image repeat
imagefilledrectangle($im, 0, 0, 450, 199, IMG_COLOR_TILED);
// Output image to the browser
header('Content-Type: image/png');
imagepng($im);
imagedestroy($im);
imagedestroy($image);
?>
输出:
示例2:
<?php
// Load a png file
$image = imagecreatefrompng(
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-9.png');
// Create an image of 670x350 size
$im = imagecreatetruecolor(670, 350);
// Set the image tile
imagesettile($im, $image);
// Make the image repeat
imagefilledrectangle($im, 0, 0, 670, 350, IMG_COLOR_TILED);
// Output image to the browser
header('Content-Type: image/png');
imagepng($im);
imagedestroy($im);
imagedestroy($image);
?>
输出:
参考: http://php.net/manual/en/function.imagesettile.php
相关用法
- PHP each()用法及代码示例
- p5.js arc()用法及代码示例
- d3.js d3.lab()用法及代码示例
- p5.js second()用法及代码示例
- d3.js d3.hcl()用法及代码示例
- PHP dir()用法及代码示例
- p5.js int()用法及代码示例
- p5.js abs()用法及代码示例
- PHP Ds\Map xor()用法及代码示例
- d3.js d3.max()用法及代码示例
- p5.js str()用法及代码示例
- d3.js d3.rgb()用法及代码示例
注:本文由纯净天空筛选整理自Mahadev99大神的英文原创作品 PHP | imagesettile() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。