Files
ylib/include/util/img.h
2024-05-29 00:00:47 +08:00

14 lines
244 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);
}
}