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


PHP ImagickDraw setViewbox()用法及代碼示例


ImagickDraw::setViewbox()函數是PHP的內置函數,用於設置畫布的整體大小。此函數設置要與繪圖矢量數據一起記錄的總體畫布大小。將使用與畫布圖像相同的尺寸來指定。

用法:

bool ImagickDraw::setViewbox( $x1, $y1, $x2, $y2 )

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


  • $x1:此參數用於保存左x坐標的值。
  • $y1:該參數用於保存左y坐標的值。
  • $x2:此參數用於保存右x坐標的值。
  • $y2:此參數用於保存右y坐標的值。

返回值:該函數不返回任何值。

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

示例1:

<?php  
  
// Create new ImagickDraw object 
$draw = new \ImagickDraw(); 
  
// Set the Stroke color  
$draw->setStrokeColor('black'); 
  
// Set the image filled color 
$draw->setFillColor('yellow'); 
  
// Set the Stroke Width 
$draw->setStrokeWidth(2); 
  
// Set the Font Size 
$draw->setFontSize(72); 
  
// Draw the rectangle 
$draw->rectangle(150, 450, 450, 300); 
  
// Set the view box 
$draw->setviewbox(0, 0, 200, 200); 
  
// Set the image filled color 
$draw->setFillColor('green'); 
  
// Draw the rectangle 
$draw->rectangle(150, 450, 250, 300); 
  
// Set the image filled color 
$draw->setFillColor('red'); 
  
// Draw the circle 
$draw->circle(100, 100, 125, 0); 
  
// Create new Imagick object   
$imagick = new \Imagick(); 
  
// Set the i age dimensions 
$imagick->newImage(500, 500, 'white'); 
  
// Set the image format 
$imagick->setImageFormat("png"); 
  
// Draw the image  
$imagick->drawImage($draw); 
header("Content-Type: image/png"); 
  
// Display the image 
echo $imagick->getImageBlob(); 
?>

輸出:
setViewBox

示例2:

<?php 
  
// Create an ImagickDraw object  
$draw = new \ImagickDraw(); 
   
// Set the stroke color  
$draw->setStrokeColor('black'); 
   
// Set the image filled color 
$draw->setFillColor('red'); 
$points = [['x' => 40 * 5, 'y' => 10 * 5],  
           ['x' => 70 * 5, 'y' => 50 * 5], 
           ['x' => 60 * 5, 'y' => 15 * 5], ]; 
   
// Draw the polygon 
$draw->polygon($points); 
   
// Set the view box 
$draw->setviewbox(0, 0, 200, 200); 
   
// Set the image filled color 
$draw->setFillColor('green'); 
$points = [['x' => 40 * 7, 'y' => 10 * 4],  
           ['x' => 70 * 2, 'y' => 50 * 3],  
           ['x' => 60 * 3, 'y' => 15 * 3], ]; 
   
// Draw the polgon 
$draw->polygon($points); 
   
// Set the image filled color 
$draw->setFillColor('yellow'); 
   
// Draw the circle 
$draw->circle(100, 100, 125, 0); 
   
// Create new Imagick object   
$imagick = new \Imagick(); 
   
// Set the image dimensions 
$imagick->newImage(400, 300, 'white'); 
   
// Set the image format 
$imagick->setImageFormat("png"); 
   
// Draw the image  
$imagick->drawImage($draw); 
header("Content-Type: image/png"); 
   
// Display the image 
echo $imagick->getImageBlob(); 
?>

輸出:
setViewBox

參考: http://php.net/manual/en/imagickdraw.setviewbox.php



相關用法


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