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


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


Fabric.js是一個JavaScript庫,用於處理畫布。 canvas圖像是用於創建圖像實例的fabric.js類之一。畫布圖像表示圖像是可移動的,可以根據需要進行拉伸。圖像的centeredRotation屬性用於沿中心(即原點)旋轉畫布圖像。

方法:首先導入fabric.js庫。導入庫後,在body標簽中創建一個畫布塊,其中將包含圖像。此後,初始化由Fabric.JS提供的Canvas和圖像類的實例,然後將centeredRotation屬性首先設置為false,然後設置為true,並嘗試在控件的幫助下旋轉圖像。然後將圖像實例渲染到畫布上並使元素居中。

用法:

fabric.Image(image, {
    centeredRotation:Boolean
});

參數:上麵的函數采用上麵提到的和下麵描述的兩個參數:

  • image:此參數拍攝圖像。
  • centeredRotation:此參數定義是啟用還是禁用畫布圖像的中心旋轉。

範例1:本示例使用FabricJS啟用畫布圖像的居中旋轉。圖像旋轉與原點一起旋轉,如以下示例所示。



<!DOCTYPE html>  
<html>  
  
<head>  
    <!-- Adding the FabricJS library --> 
    <script src=  
"https://cdnjs.cloudflare.com/ajax/libs/fabric.js/3.6.2/fabric.min.js">  
    </script>  
</head>  
  
<body>  
    <h1 style="color:green;">GeeksforGeeks</h1> 
    <b>Fabric.js | Image centeredRotation Property </b>   
       
    <canvas id="canvas" width="300" height="250"
        style="border:2px solid #000000">  
    </canvas>  
  
    <img src= 
"https://media.geeksforgeeks.org/wp-content/uploads/20200327230544/g4gicon.png" 
        width="100" height="100" id="my-image"> 
    <br> 
  
    <button onclick="func()">Clickme</button> 
  
    <script>  
        // Create the instance of canvas object 
        var canvas = new fabric.Canvas("canvas");  
  
        // Getting the image 
        var img= document.getElementById('my-image'); 
  
        // Creating the image instance  
        var imgInstance = new fabric.Image(img, { 
            centeredRotation:true 
        }); 
  
        // Rendering the image to canvas 
        canvas.add(imgInstance); 
        canvas.centerObject(imgInstance); 
    </script>  
</body>  
  
</html>

輸出:

範例2:

<!DOCTYPE html>  
<html>  
  
<head>  
    <!-- Adding the FabricJS library --> 
    <script src=  
"https://cdnjs.cloudflare.com/ajax/libs/fabric.js/3.6.2/fabric.min.js">  
    </script>  
</head>  
  
<body>  
    <h1 style="color:green;">GeeksforGeeks</h1>  
    <b>Fabric.js | Image centeredRotation Property </b>  
  
    <canvas id="canvas" width="300" height="300"
        style="border:2px solid #000000">  
    </canvas>  
  
    <img src = 
"https://www.geeksforgeeks.org/wp-content/uploads/gfg_200X200-1.png" 
        width="100" height="100" id="my-image"
        style="display:none"> 
    <br> 
  
    <button onclick="func()">Clickme</button> 
  
    <script>  
        // Create the instance of canvas object 
        var canvas = new fabric.Canvas("canvas");  
  
        // Getting the image 
        var img= document.getElementById('my-image'); 
  
        // Creating the image instance  
        var imgInstance = new fabric.Image(img, { 
            centeredRotation:false 
        }); 
  
        // Rendering the image to canvas 
        canvas.add(imgInstance); 
  
        func=()=>{ 
            var imgInstance = new fabric.Image(img, { 
                centeredRotation:true 
            }); 
  
            // Rendering the image to canvas 
            canvas.add(imgInstance); 
            canvas.clear(); 
            canvas.add(imgInstance); 
        } 
    </script>  
</body>  
  
</html>

輸出:




相關用法


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