- 授权协议: MIT
- 开发语言: JavaScript HTML/CSS
- 操作系统: 跨平台
- 软件首页: https://github.com/hustcc/alimask
- 软件文档: https://github.com/hustcc/alimask
软件介绍
alimask
alimask 是一个使用 canvas 生成类似阿里巴巴内部网站水印图片的 JavaScript 库。Online demo here.
1. Install
npm install alimask
Then import it.
<script type="text/javascript" src="dist/alimask.min.js"></script>
// or
var alimask = require('alimask');
// or
import alimask from 'alimask';Then use alimask(text, options) API.
alimask('王小为(小为) 888888');
alimask('王小为(小为) 888888', { color: '#f6dcd7' });
alimask('小泥巴(小美) 888888', { alpha: 0.5 });2. API
The unique API is: alimask(text, options).
text (String): required, the text in the watermark image.
options (Object): optional, the options of watermark, with keys below:
width (Number): default is
250.height (Number): default is
80.color (String): the text color, default is
#ebebeb.alpha (Float): the text alpha(0 ~ 1), default is
0.8.font (String): the text font style, default is
10px Arial.
The api return the base64 string of watermark image which can be used in css background / img tag.
3. Build & Test
npm install
npm run build
npm test
Hacker's Delight
Henry S. Warren Jr. / Addison-Wesley / 2002-7-27 / USD 59.99
A collection useful programming advice the author has collected over the years; small algorithms that make the programmer's task easier. * At long last, proven short-cuts to mastering difficult aspec......一起来看看 《Hacker's Delight》 这本书的介绍吧!
