base64Captcha icon indicating copy to clipboard operation
base64Captcha copied to clipboard

captcha of base64 image string

Results 22 base64Captcha issues
Sort by recently updated
recently updated
newest added

the Store method Get does not return if the answer exists or not,so the non-exists id will match the empty answer

可以像背景色一样指定字体的颜色吗? 现在太花了

https://github.com/mojocn/base64Captcha/blob/1a6d007056a31d2525bb29780d37fc396634caee/captcha.go#L51 Store.verify should be used here, otherwise custom case-insensitive authentication cannot be implemented

Hi, @mojocn 你好,感谢开发 base64Captcha。 现在有个问题不确定是不是库的问题,遂来请教下。 问题描述: 按照 `main.go.md` 中的定义: ``` customeStore := customizeRdsStore{client} base64Captcha.SetCustomStore(&customeStore) ``` 我尝试在自己的代码库里添加 SetCustomStore 方法,传递自定义的 customeStore client,发现找不到 SetCustomStore 方法,搜索了代码库也没找到这个方法,是这个方法要自己定义吗?还是代码库里将它删掉了? ![image](https://user-images.githubusercontent.com/54698560/154895104-2055cba8-0f95-4391-96cb-22890178a665.png) 烦请指点,感谢。:)

Use custom id, example ip:reg

go mod 安装包失败 提示: `../../pkg/mod/github.com/mojocn/[email protected]/fonts.go:26:20: undefined: Asset` ![image](https://user-images.githubusercontent.com/38563666/94219097-927a2d80-ff18-11ea-85d5-1584a2754056.png)

不知道为什么一使用就报错。 runtime error: invalid memory address or nil pointer dereference goroutine

I'm interested in the loading of custom fonts for my project. I understand that the current fonts seem to be loaded in using code generated by bindata (not very familiar...

```go package base64Captcha // Driver captcha interface for captcha engine to to write staff type Driver interface { //DrawCaptcha draws binary item DrawCaptcha(content string) (item Item, err error) //GenerateIdQuestionAnswer creates...