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


Fabric.js toRgba()用法及代碼示例

toRgba()方法用於將任何類型的指定顏色表示形式轉換為其RGBA(紅色,綠色,藍色和Alpha)表示形式。

用法:

toRgba()

參數:此方法不接受任何參數。

返回值:此方法以RGBA格式返回顏色表示。

範例1:



HTML

<!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> 
<script type="text/javascript"> 
  
 // Calling the toRgba() function over  
 // the specified color values 
 console.log(new fabric.Color("hsl(0, 100%, 50%)").toRgba()); 
 console.log(new fabric.Color("hsla(10, 40%, 53%, 0.6)").toRgba()); 
</script> 
  
</body> 
  
</html>

輸出:

rgba(255,0,0,1)
rgba(183,103,87,0.6)

範例2:

HTML

<!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> 
<script type="text/javascript"> 
  
 // Initializing some color values in different color format 
 var A = "hex(fff00f)"; 
 var B = "hsl(12, 13%, 25%)"; 
  
 // Calling the toRgba() function over  
 // the above specified color values 
 console.log(new fabric.Color(A).toRgba()); 
 console.log(new fabric.Color(B).toRgba()); 
</script> 
  
</body> 
  
</html>

輸出:

rgba(0,0,0,1)
rgba(72,59,55,1)

相關用法


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