img.h 244 B

12345678910111213
  1. #pragma once
  2. #include "base/define.h"
  3. #include "base/buffer.h"
  4. namespace ylib
  5. {
  6. namespace img
  7. {
  8. //生成验证码
  9. ylib::buffer make_code(uint32 width,uint32 height,uint32 code_length, std::string& captcha);
  10. }
  11. }