Chinaunix首页 | 论坛 | 博客
  • 博客访问: 53688
  • 博文数量: 48
  • 博客积分: 0
  • 博客等级: 民兵
  • 技术积分: 260
  • 用 户 组: 普通用户
  • 注册时间: 2016-07-12 11:48
文章分类
文章存档

2016年(48)

我的朋友

分类: JavaScript

2016-10-22 16:08:44

ccap

node.js generate captcha using c++ library CImg without install any other lib or software

You can generate captcha without install any other libraries or software, only do npm install ccap, that's all.

node-ccap support linux and windows.

compile maybe cost you 1 minute,simply wait;

generate captcha picture 697/sec;

点击(此处)折叠或打开

  1. npm install ccap
  2. var ccap = require('ccap')


these three ways all will be ok:

点击(此处)折叠或打开

  1. var captcha = ccap();

  2. var captcha = ccap(width, height, offset);

  3. var captcha = ccap({
  4.     
  5.     width:256,//set width,default is 256

  6.     height:60,//set height,default is 60

  7.     offset:40,//set text spacing,default is 40

  8.     quality:100,//set pic quality,default is 50

  9.     generate:function(){//Custom the function to generate captcha text
  10.     
  11.      //generate captcha text here

  12.      return text;//return the captcha text

  13.     }

  14. }); 

基于MIT协议发布:

点击(此处)折叠或打开

  1. The MIT License
  2.  
  3. Permission is hereby granted, free of charge, to any person obtaining
  4. a copy of this software and associated documentation files (the
  5. "Software"), to deal in the Software without restriction, including
  6. without limitation the rights to use, copy, modify, merge, publish,
  7. distribute, sublicense, and/or sell copies of the Software, and to
  8. permit persons to whom the Software is furnished to do so, subject to
  9. the following conditions:
  10.  
  11. The above copyright notice and this permission notice shall be
  12. included in all copies or substantial portions of the Software.
  13.  
  14. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  15. EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  16. MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  17. NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
  18. LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
  19. OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
  20. WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

wemall 开源微商城 ,微信商城,商城源码,三级分销,微生鲜,微水果,微外卖,微订餐---专业的o2o系统 wemall地址: 

代码详情:
























阅读(580) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~