imagescale()函數是PHP中的內置函數,用於使用給定的新寬度和高度縮放圖像。
用法:
resource imagescale( $image, $new_width, $new_height = -1, $mode = IMG_BILINEAR_FIXED )
參數:該函數接受上述和以下所述的四個參數:
- $image:它由圖像創建函數之一(例如imagecreatetruecolor())返回。它用於創建圖像的尺寸。
- $new_width:此參數保留用於縮放圖像的寬度。
- $new_height:此參數保留縮放圖像的高度。如果此參數的值為負或省略,則將保留圖像的縱橫比。
- $mode:此參數保存模式。此參數的值是IMG_NEAREST_NEIGHBOUR,IMG_BILINEAR_FIXED,IMG_BICUBIC,IMG_BICUBIC_FIXED之一。
返回值:如果成功,此函數將返回縮放圖像的資源;如果失敗,則返回False。
以下示例程序旨在說明PHP中的imagescale()函數:
程序1:
<?php
// Assign image file to variable
$image_name =
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-15.png';
// Load image file
$image = imagecreatefrompng($image_name);
// Use imagescale() function to scale the image
$img = imagescale( $image, 500, 400 );
// Output image in the browser
header("Content-type: image/png");
imagepng($img);
?>
輸出:
程序2:
<?php
// It create the size of image or blank image.
$image = imagecreatetruecolor(500, 300);
// Set the background color of image.
$bg = imagecolorallocate($image, 205, 220, 200);
// Fill background with above selected color.
imagefill($image, 0, 0, $bg);
// Set the color of an ellipse.
$col_ellipse = imagecolorallocate($image, 0, 102, 0);
// Function to draw the filled ellipse.
imagefilledellipse($image, 250, 150, 400, 250, $col_ellipse);
// Use imagescale() function to scale the image
$img = imagescale ( $image, 700, 500 );
// Output image in the browser
header("Content-type: image/png");
imagepng($img);
?>
輸出:
參考: https://www.php.net/manual/en/function.imagescale.php
相關用法
- p5.js nfc()用法及代碼示例
- d3.js d3.hcl()用法及代碼示例
- p5.js nfp()用法及代碼示例
- p5.js nfs()用法及代碼示例
- PHP cos( )用法及代碼示例
- PHP sin( )用法及代碼示例
- p5.js nf()用法及代碼示例
- PHP tan( )用法及代碼示例
- PHP pow( )用法及代碼示例
- d3.js d3.map.set()用法及代碼示例
- PHP next()用法及代碼示例
- d3.js d3.set.has()用法及代碼示例
注:本文由純淨天空篩選整理自jit_t大神的英文原創作品 PHP | imagescale() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。