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);
?>
輸出:
程序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);
?>
輸出:
相關文章:
參考: http://php.net/manual/en/function.imagecopy.php
相關用法
- PHP tan( )用法及代碼示例
- PHP Ds\Map put()用法及代碼示例
- p5.js value()用法及代碼示例
- PHP Ds\Map get()用法及代碼示例
- p5.js max()用法及代碼示例
- PHP each()用法及代碼示例
- d3.js d3.max()用法及代碼示例
- d3.js d3.hcl()用法及代碼示例
- p5.js day()用法及代碼示例
- p5.js int()用法及代碼示例
- p5.js nfs()用法及代碼示例
- p5.js nfc()用法及代碼示例
注:本文由純淨天空篩選整理自Mahadev99大神的英文原創作品 PHP | imagecopy() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。