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


Fabric.js Image angle屬性用法及代碼示例


在本文中,我們將看到如何使用FabricJS設置畫布圖像的角度。畫布意味著圖像是可移動的,並且可以根據需要進行拉伸。此外,當涉及角度,筆劃寬度,填充等時,可以自定義圖像。

為了使之成為可能,我們將使用一個名為FabricJS的JavaScript庫。導入庫後,我們將在body標簽中創建一個畫布塊,其中將包含我們的圖像。此外,我們將創建一個img元素,其中包含要添加到畫布內的圖像,並將style屬性設置為display:none;。因為我們不希望圖像在畫布外可見。之後,我們將初始化由FabricJS提供的Canvas和Image實例,並在Canvas上渲染Image並使用angle屬性設置畫布圖像的角度,如下麵的示例所示。

用法:

fabric.Image({
    image,
    angle:number
}); 

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

  • image:它指定圖像對象。
  • angle:它以度為單位指定圖像的角度。

例:本示例使用FabricJS設置畫布圖像的角度。

<!DOCTYPE html> 
<html> 
  
<head> 
    <title>  
        Fabric.js | Image angle Property 
    </title> 
  
    <!-- FabricJS CDN -->
    <script src= 
"https://cdnjs.cloudflare.com/ajax/libs/fabric.js/3.6.2/fabric.min.js"> 
    </script> 
</head> 
  
<body> 
    <div style="text-align:center;width:600px;"> 
        <h1 style="color:green;"> 
            GeeksforGeeks 
        </h1> 
        <b> 
            Fabric.js | Image angle Property 
        </b> 
    </div> 
  
    <div style="text-align:center;"> 
        <canvas id="canvas" width="600" height="400" 
                style="border:1px solid #000000;"> 
        </canvas> 
    </div> 
  
    <!-- Add the image to be used in the canvas and hide it here  
         because only need it inside the canvas -->
    <img style="display:none;" src="https://media.geeksforgeeks.org/wp-content/uploads/20200327230544/g4gicon.png"
        id="my-image" alt=""> 
          
    <script> 
        // Initiate a Canvas instance 
        var canvas = new fabric.Canvas("canvas"); 
  
        // Get the image element 
        var image = document.getElementById('my-image'); 
  
        // Initiate a Fabric instance 
        var fabricImage = new fabric.Image(image, { 
            angle:30 
        }); 
  
        // Add the image to canvas 
        canvas.add(fabricImage); 
    </script> 
</body> 
  
</html>                   

輸出:




相關用法


注:本文由純淨天空篩選整理自gurrrung大神的英文原創作品 Fabric.js | Image angle Property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。