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


PHP imagestringup()用法及代码示例


imagestringup()函数是PHP中的内置函数,用于垂直绘制字符串。

用法:

bool imagestringup( $image, $font, $x, $y, $string, $color )

参数:该函数接受上述和以下所述的六个参数:


  • $image:imagecreatetruecolor()函数用于创建给定尺寸的空白图像。
  • $font:此参数用于设置字体大小。使用latin2编码的内置字体可以是1、2、3、4、5或使用imageloadfont()函数注册的其他字体标识符。
  • $x:此参数用于保存左上角的x坐标。
  • $y:此参数用于保留左上角的y坐标。
  • $string:此参数用于保存要写入的字符串。
  • $color:此参数用于保留图像的颜色。

返回值:如果成功,此函数返回True;如果失败,则返回False。

以下示例程序旨在说明PHP中的imagestringup()函数:

示例1:

<?php 
  
// Create a 400*300 image 
$im = imagecreatetruecolor(400, 300); 
  
// Set the background color of image  
$background_color = imagecolorallocate($im,  0, 153, 0);  
       
// Fill background with above selected color  
imagefill($im, 0, 0, $background_color);  
  
// Write the text 
$textcolor = imagecolorallocate($im, 255, 255, 255); 
imagestringup($im, 6, 195, 200, 'GeeksforGeeks', $textcolor); 
  
// Output the picture to the browser  
header('Content-type: image/png');  
       
imagepng($im);  
?>

输出:

示例2:

<?php 
  
// Create a 400*300 image 
$im = imagecreatetruecolor(400, 300); 
  
// Set the background color of image  
$background_color = imagecolorallocate($im,  0xFF, 0xFF, 0xFF);  
       
// Fill background with above selected color  
imagefill($im, 0, 0, $background_color);  
  
// Write the text 
$textcolor = imagecolorallocate($im, 0, 153, 0); 
imagestringup($im, 6, 195, 200, 'GeeksforGeeks', $textcolor); 
  
// Output the picture to the browser  
header('Content-type: image/png');  
       
imagepng($im);  
?>

输出:

参考: http://php.net/manual/en/function.imagestringup.php



相关用法


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