當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


PHP GmagickDraw rectangle()用法及代碼示例


GmagickDraw::rectangle()函數是PHP中的一個內置函數,用於繪製矩形。

用法:

public GmagickDraw::rectangle( $x1, $y1, $x2, $y2 )


參數:該函數接受上述和以下所述的四個參數:


  • $x1:此參數采用左上角的x坐標值。
  • $y1:此參數采用左上角的y坐標值。
  • $x2:此參數采用右下角的x坐標值。
  • $y2:此參數采用右下角的y坐標值。

返回值:成功時,此函數返回GmagickDraw對象。

錯誤/異常:此函數在出錯時引發GmagickException。

以下示例程序旨在說明PHP中的GmagickDraw::rectangle()函數:

程序1:

<?php  
     
// Create a GmagickDraw object  
$draw = new GmagickDraw();   
    
// Set the color 
$draw->setFillColor('Green');  
    
// Set the width and height of image  
$draw->setStrokeWidth(7);  
$draw->setFontSize(72);  
     
// Function to draw rectangle   
$draw->rectangle(20, 20, 380, 465); 
   
$gmagick = new Gmagick();  
$gmagick->newImage(500, 500, 'White');  
$gmagick->setImageFormat("png");  
  
// Use of drawimage function 
$gmagick->drawImage($draw);  
   
// Display the output image  
header("Content-Type: image/png");  
echo $gmagick->getImageBlob();  
?> 

輸出:

程序2:

<?php  
      
// Create a GmagickDraw object  
$draw = new GmagickDraw();   
     
// Set the color 
$draw->setFillColor('Lightgreen');  
   
// Set the width and height of image  
$draw->setStrokeWidth(7);  
$draw->setFontSize(72);  
      
// Function to draw rectangle   
$draw->rectangle(20, 20, 880, 465); 
$draw->setFontSize(40);  
$draw->setFillColor('Green');   
$gmagick = new Gmagick();  
$gmagick->newImage(900, 500, 'White');  
$gmagick->setImageFormat("png");  
   
// Use of drawimage function 
$gmagick->drawImage($draw);  
   
// Annotate Image 
$gmagick->annotateImage($draw, 5, 120, 0,   
        '  GeeksforGeeks: A computer science portal');  
  
$gmagick->annotateImage($draw, 5, 220, 0,  
                        '  sarthak_ishu11');  
  
// Display the output image  
header("Content-Type: image/png");  
echo $gmagick->getImageBlob();  
?> 

輸出:

參考: http://php.net/manual/en/gmagickdraw.rectangle.php



相關用法


注:本文由純淨天空篩選整理自sarthak_ishu11大神的英文原創作品 PHP | GmagickDraw rectangle() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。