writeStream.getColorDepth()方法是tty模块中WriteStream类的内置应用程序编程接口,用于确定终端支持的颜色。
用法:
const writeStream.getColorDepth([env])
参数:此方法接受包含环境变量的对象作为参数。
返回值:此方法返回此终端支持的颜色数量。
范例1: 文件名:index.js
// Node.js program to demonstrate the
// writeStream.getColorDepth() method
// Importing dgram module
var dgram = require('dgram');
// Creating and initializing client
// and server socket
var client = dgram.createSocket("udp4");
var server = dgram.createSocket("udp4");
// Handling the message event
server.on("message", function (msg) {
// Creating and initializing a
// WriteStream object
let WriteStream = process.stdout;
// Getting color depth
// by using getColorDepth() API
const col = WriteStream
.getColorDepth(process.env);
// Displaying the result
process.stdout.write(msg + col);
// Exiting process
process.exit();
})
// Binding server with port
.bind(1234, () => {
});
// Client sending message to server
client.send("No of color supported is:- ",
0, 28, 1234, "localhost");
输出:
No of color supported is:- 24
示例2:Filename:index.js
// Node.js program to demonstrate the
// writeStream.getColorDepth() method
// Creating and initializing a
// WriteStream object
let WriteStream = process.stdout;
// Getting color depth
// by using getColorDepth() API
const col = WriteStream.getColorDepth(process.env);
// Displaying the result
console.log("No of color supported is:- " + col);
使用以下命令运行index.js文件:
node index.js
输出:
No of color supported is:- 24
参考:https://nodejs.org/dist/latest-v12.x/docs/api/tty.html#tty_writestream_getcolordepth_env
相关用法
- Node.js console.timeLog()用法及代码示例
- Node.js GM charcoal()用法及代码示例
- Node.js GM blur()用法及代码示例
- Node.js GM sharpen()用法及代码示例
- Node.js GM drawLine()用法及代码示例
注:本文由纯净天空筛选整理自RohitPrasad3大神的英文原创作品 Node.js writeStream.getColorDepth() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。