4.6.201910311504 • Published 5 years ago

@dfeidao/fd-an000121 v4.6.201910311504

Weekly downloads
5
License
MIT
Repository
-
Last release
5 years ago

生成二维码

安装

yarn add --dev @dfeidao/fd-an000121

参数

参数名说明
data_for_qrcode二维码的数据
width二维码的宽
dark_color二维码的颜色
light_color背景色

示例

const ran121 = await (() => {
	const data_for_qrcode = 'http://www.01feidao.com';	// 二维码的数据
	const width = 400;	// 二维码的宽
	const dark_color = '#000000';	// 二维码的颜色
	const light_color = '#ffffff';	// 背景色
	return an121(data_for_qrcode, width, dark_color, light_color);
})();