Files
ylib/include/util/img.h
xx ef63cfd6aa 1、删除部分三方库
2、整合ylib为一个lib库
2024-05-26 12:51:32 +08:00

14 lines
241 B
C++

#pragma once
#include "base/define.h"
#include "base/buffer.h"
namespace ylib
{
namespace img
{
//生成验证码
ylib::buffer make_code(uint32 width,uint32 height,uint32 code_length, std::string& captcha);
}
}