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


PHP imagecopy()用法及代碼示例


imagecopy()函數是PHP中的內置函數,用於複製圖像或圖像的一部分。成功時此函數返回true,失敗時返回false。

用法:

bool imagecopy ( $dst_image, $src_image, $dst_x, $dst_y, $src_x, 
$src_y, $src_w, $src_h )

參數:該函數接受上述和以下所述的八個參數:


  • $dst_image:此參數用於設置目標圖像鏈接資源。
  • $src_image:此參數用於設置源圖像鏈接資源。
  • $dst_x:此參數用於設置目標點的x坐標。
  • $dst_y:此參數用於設置目標點的y坐標。
  • $src_x:此參數用於設置源點的x坐標。
  • $src_y:此參數用於設置源點的x坐標。
  • $src_w:此參數用於設置源寬度。
  • $src_h:此參數用於設置光源高度。

返回值:如果成功,則此函數返回True;如果失敗,則返回False。

以下示例程序旨在說明PHP中的imagecopy()函數。

程序1:

<?php 
  
// Create image instances 
$src = imagecreatefromgif( 
'https://media.geeksforgeeks.org/wp-content/uploads/animateImages.gif'); 
$dest = imagecreatetruecolor(400, 200); 
  
// Image copy from source to destination 
imagecopy($dest, $src, 0, 0, 0, 0, 500, 300); 
  
// Output and free from memory 
header('Content-Type: image/gif'); 
imagegif($dest); 
  
imagedestroy($dest); 
imagedestroy($src); 
?>

輸出:
part of image

程序2:

<?php 
// Create image instances 
$src = imagecreatefromgif( 
'https://media.geeksforgeeks.org/wp-content/uploads/animateImages.gif'); 
$dest = imagecreatetruecolor(665, 180); 
  
// Image copy from source to destination 
imagecopy($dest, $src, 0, 0, 0, 0, 665, 180); 
  
// Output and free from memory 
header('Content-Type: image/gif'); 
imagegif($dest); 
  
imagedestroy($dest); 
imagedestroy($src); 
?>

輸出:
full image

相關文章:

參考: http://php.net/manual/en/function.imagecopy.php



相關用法


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