toBlackWhite()方法用于将任何类型的指定颜色表示形式转换为黑白表示形式。
用法:
toBlackWhite(threshold)
参数:此方法接受如上所述和以下描述的参数:
- threshold:此参数保留指定的阈值。
返回值:此方法以黑白表示形式返回颜色表示。
范例1:
Javascript
<!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 toBlackWhite() function over
// the specified color values
console.log(new fabric.Color("hsl(0, 100%, 50%)").toBlackWhite(0));
console.log(new fabric.Color("hsla(10, 40%, 53%, 0.6)").toBlackWhite(1));
</script>
</body>
</html>
输出:
{"_source":[0,0,0,1]} {"_source":[255,255,255,0.6]}
范例2:
Javascript
<!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%)";
var C = "hsla(10, 40%, 13%, 0.6)";
var D = "rgb(10, 40, 13)";
// Calling the toBlackWhite() function over
// the above specified color values
console.log(new fabric.Color(A).toBlackWhite());
console.log(new fabric.Color(B).toBlackWhite(0));
console.log(new fabric.Color(C).toBlackWhite(1));
console.log(new fabric.Color(D).toBlackWhite(2));
</script>
</body>
</html>
输出:
{"_source":[0,0,0,1]} {"_source":[0,0,0,1]} {"_source":[255,255,255,0.6]} {"_source":[255,255,255,1]}
相关用法
- Lodash _.method()用法及代码示例
- Node.js Http2ServerRequest.method用法及代码示例
- Node.js http.IncomingMessage.method用法及代码示例
- Javascript dataView.getInt16()用法及代码示例
- Javascript RegExp toString()用法及代码示例
- Node.js URLSearchParams.has()用法及代码示例
- JavaScript Math cosh()用法及代码示例
- HTML DOM isEqualNode()用法及代码示例
- JavaScript Date toLocaleTimeString()用法及代码示例
- Node.js crypto.createHash()用法及代码示例
- Node.js writeStream.clearLine()用法及代码示例
- Node.js fs.link()用法及代码示例
- JavaScript Math random()用法及代码示例
- JavaScript Math round()用法及代码示例
- Javascript toString()用法及代码示例
- Javascript Number.isInteger( )用法及代码示例
- Javascript Number.isFinite()用法及代码示例
- Javascript toFixed()用法及代码示例
- Javascript toPrecision()用法及代码示例
- JavaScript Math abs()用法及代码示例
- JavaScript Math sqrt()用法及代码示例
- JavaScript Math floor()用法及代码示例
注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 Fabric.js toBlackWhite() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。