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


PHP imagepalettecopy()用法及代码示例


imagepalettecopy()函数是PHP中的内置函数,用于将调色板从一个图像复制到另一个图像。

用法:

void imagepalettecopy( resource $destination, resource $source )

参数:该函数接受上述和以下描述的两个参数:


  • $destination:它指定目标图像资源。
  • $source:它指定源图像资源。

返回值:此函数不返回任何内容。

下面给出的程序说明了PHP中的imagepalettecopy()函数:

程序1:

<?php 
// Create two palette images 
$palette1 = imagecreate(700, 200); 
$palette2 = imagecreate(700, 200); 
  
// Create a green color 
$green = imagecolorallocate($palette1, 0, 255, 0); 
  
// Add green color as background to pallete 1 
imagefilledrectangle($palette1, 0, 0, 99, 99, $green); 
  
// Copy the palette from image 1 to image 2 
imagepalettecopy($palette2, $palette1); 
  
// Output image to the browser and see the color is green 
header('Content-type:image/png'); 
imagepng($palette2); 
?>

输出:

程序2:

<?php 
// Create two palette images 
$palette1 = imagecreate(700, 200); 
$palette2 = imagecreate(700, 200); 
  
// Create a green color 
$green = imagecolorallocate($palette1, 0, 255, 0); 
  
// Add green color as background to pallete 1 
imagefilledrectangle($palette1, 0, 0, 99, 99, $green); 
  
// Copy the palette from image 1 to image 2 
imagepalettecopy($palette2, $palette1); 
  
// Get the number of colors in image 
$color1 = imagecolorstotal($palette1); 
$color2 = imagecolorstotal($palette2); 
  
echo "Number of colors at image 1 is " . $color1 . "<br>"; 
echo "Number of colors at image 2 is " . $color2; 
?>

输出:

Number of colors at image 1 is 1
Number of colors at image 2 is 1

参考: https://www.php.net/manual/en/function.imagepalettecopy.php



相关用法


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