當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


PHP imagesettile()用法及代碼示例


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



相關用法


注:本文由純淨天空篩選整理自Mahadev99大神的英文原創作品 PHP | imagesettile() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。