当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP imagescale()用法及代码示例


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



相关用法


注:本文由纯净天空筛选整理自jit_t大神的英文原创作品 PHP | imagescale() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。