go-captcha-assets

module
v1.0.6 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Apr 9, 2025 License: Apache-2.0

README

Golang Assets File of Captcha

Go Captcha presets some default embedded resources and stores them in the Go file format. In addition, you can also configure the captcha according to your own needs.

Source Resources File: https://github.com/wenlng/go-captcha-resources

Install

$ go get -u github.com/wenlng/go-captcha-assets@latest

Use Assets

Chinese Text Assets
import "github.com/wenlng/go-captcha-assets/bindata/chars"

func Demo() {
    chars := chars.GetChineseChars()
}
Alpha Text Assets
import "github.com/wenlng/go-captcha-assets/bindata/chars"

func Demo() {
    chars := chars.GetAlphaChars()
}
Font Assets
import "github.com/wenlng/go-captcha-assets/resources/fonts/fzshengsksjw"

func Demo() {
    fonts, err := fzshengsksjw.GetFont()
    if err != nil {
        log.Fatalln(err)
    }
}
Image Assets
//import "github.com/wenlng/go-captcha-assets/resources/images"
import "github.com/wenlng/go-captcha-assets/resources/images_v2"

func Demo() {
    imgs, err := images.GetImages()
    if err != nil {
        log.Fatalln(err)
    }
}
Shape Assets
import "github.com/wenlng/go-captcha-assets/resources/shapes"

func Demo() {
    shapeMaps, err := shapes.GetShapes()
    if err != nil {
        log.Fatalln(err)
    }
}
Thumbnail Assets
import "github.com/wenlng/go-captcha-assets/resources/thumb"

func Demo() {
    imgs, err := thumb.GetImages()
    if err != nil {
        log.Fatalln(err)
    }
}
Tile Assets
import "github.com/wenlng/go-captcha-assets/resources/tiles"

func Demo() {
    graphs, err := tiles.GetTiles()
    if err != nil {
        log.Fatalln(err)
    }
    
    // slide
    var newGraphs = make([]*slide.GraphImage, 0, len(graphs))
    for i := 0; i < len(graphs); i++ {
        graph := graphs[i]
        newGraphs = append(newGraphs, &slide.GraphImage{
            OverlayImage: graph.OverlayImage,
            MaskImage:    graph.MaskImage,
            ShadowImage:  graph.ShadowImage,
        })
    }
}

Load Asset As Needed

// Example
import assets "github.com/wenlng/go-captcha-assets/bindata/images/image_v2_1"

func Demo() error {
    asset, err = assets.Asset("sourcedata/images/image-v2-1/image.jpg")
    if err != nil {
    return err
    }
    img, err = helper.DecodeByteToJpeg(asset)
    if err != nil {
    return err
    }
    fmt.Println(img)
}
Type Package Path Asset Path Image
Image bindata/images/image_v2_1 sourcedata/images/image-v2-1/image.jpg
Image bindata/images/image_v2_2 sourcedata/images/image-v2-2/image.jpg
Image bindata/images/image_v2_3 sourcedata/images/image-v2-3/image.jpg
Image bindata/images/image_v2_4 sourcedata/images/image-v2-4/image.jpg
Image bindata/images/image_v2_5 sourcedata/images/image-v2-5/image.jpg
Image bindata/images/image_v2_6 sourcedata/images/image-v2-6/image.jpg
Image bindata/images/image_v2_7 sourcedata/images/image-v2-7/image.jpg
Image bindata/images/image_v2_8 sourcedata/images/image-v2-8/image.jpg
Image bindata/images/image_v2_9 sourcedata/images/image-v2-9/image.jpg
Image bindata/images/image_v2_10 sourcedata/images/image-v2-10/image.jpg
Image bindata/images/image_v2_11 sourcedata/images/image-v2-11/image.jpg
Image bindata/images/image_v2_12 sourcedata/images/image-v2-12/image.jpg
Image bindata/images/image_v2_13 sourcedata/images/image-v2-13/image.jpg
Image bindata/images/image_v2_14 sourcedata/images/image-v2-14/image.jpg
Image bindata/images/image_v2_15 sourcedata/images/image-v2-15/image.jpg
Image bindata/images/image_v2_16 sourcedata/images/image-v2-16/image.jpg
-
Thumb bindata/thumbs/thumb_1 sourcedata/thumbs/thumb-1/thumb.jpg
Thumb bindata/thumbs/thumb_2 sourcedata/thumbs/thumb-2/thumb.jpg
Thumb bindata/thumbs/thumb_3 sourcedata/thumbs/thumb-3/thumb.jpg
Thumb bindata/thumbs/thumb_4 sourcedata/thumbs/thumb-4/thumb.jpg
Thumb bindata/thumbs/thumb_5 sourcedata/thumbs/thumb-5/thumb.jpg
-
Tile bindata/tiles/tile_1 sourcedata/tiles/tile-1/tile.png
Tile bindata/tiles/tile_1 sourcedata/tiles/tile-1/tile-shadow.png
Tile bindata/tiles/tile_1 sourcedata/tiles/tile-1/tile-mask.png
Tile bindata/tiles/tile_2 sourcedata/tiles/tile-2/tile.png
Tile bindata/tiles/tile_2 sourcedata/tiles/tile-2/tile-shadow.png
Tile bindata/tiles/tile_2 sourcedata/tiles/tile-2/tile-mask.png
Tile bindata/tiles/tile_3 sourcedata/tiles/tile-3/tile.png
Tile bindata/tiles/tile_3 sourcedata/tiles/tile-3/tile-shadow.png
Tile bindata/tiles/tile_3 sourcedata/tiles/tile-3/tile-mask.png
Tile bindata/tiles/tile_4 sourcedata/tiles/tile-4/tile.png
Tile bindata/tiles/tile_4 sourcedata/tiles/tile-4/tile-shadow.png
Tile bindata/tiles/tile_4 sourcedata/tiles/tile-4/tile-mask.png
-
Shape bindata/shapes/shape_1 sourcedata/shapes/shape-1/shape.png
Shape bindata/shapes/shape_2 sourcedata/shapes/shape-2/shape.png
Shape bindata/shapes/shape_3 sourcedata/shapes/shape-3/shape.png
Shape bindata/shapes/shape_4 sourcedata/shapes/shape-4/shape.png
Shape bindata/shapes/shape_5 sourcedata/shapes/shape-5/shape.png
Shape bindata/shapes/shape_6 sourcedata/shapes/shape-6/shape.png
Shape bindata/shapes/shape_7 sourcedata/shapes/shape-7/shape.png
Shape bindata/shapes/shape_8 sourcedata/shapes/shape-8/shape.png
Shape bindata/shapes/shape_9 sourcedata/shapes/shape-9/shape.png
Shape bindata/shapes/shape_10 sourcedata/shapes/shape-10/shape.png
Shape bindata/shapes/shape_11 sourcedata/shapes/shape-11/shape.png
Shape bindata/shapes/shape_12 sourcedata/shapes/shape-12/shape.png
Shape bindata/shapes/shape_13 sourcedata/shapes/shape-13/shape.png
-
Font bindata/fonts/fzshengsksjw_cu sourcedata/fonts/fzshengsksjw_cu/font.ttf

Directories

Path Synopsis
bindata
fonts/fzshengsksjw_cu
Code generated for package fzshengsksjw_cu by go-bindata DO NOT EDIT.
Code generated for package fzshengsksjw_cu by go-bindata DO NOT EDIT.
fonts/yrdzst_bold
Code generated for package yrdzst_bold by go-bindata DO NOT EDIT.
Code generated for package yrdzst_bold by go-bindata DO NOT EDIT.
images/image_1
Code generated for package image_1 by go-bindata DO NOT EDIT.
Code generated for package image_1 by go-bindata DO NOT EDIT.
images/image_2
Code generated for package image_2 by go-bindata DO NOT EDIT.
Code generated for package image_2 by go-bindata DO NOT EDIT.
images/image_3
Code generated for package image_3 by go-bindata DO NOT EDIT.
Code generated for package image_3 by go-bindata DO NOT EDIT.
images/image_4
Code generated for package image_4 by go-bindata DO NOT EDIT.
Code generated for package image_4 by go-bindata DO NOT EDIT.
images/image_5
Code generated for package image_5 by go-bindata DO NOT EDIT.
Code generated for package image_5 by go-bindata DO NOT EDIT.
images/image_v2_1
Code generated for package image_v2_1 by go-bindata DO NOT EDIT.
Code generated for package image_v2_1 by go-bindata DO NOT EDIT.
images/image_v2_10
Code generated for package image_v2_10 by go-bindata DO NOT EDIT.
Code generated for package image_v2_10 by go-bindata DO NOT EDIT.
images/image_v2_11
Code generated for package image_v2_11 by go-bindata DO NOT EDIT.
Code generated for package image_v2_11 by go-bindata DO NOT EDIT.
images/image_v2_12
Code generated for package image_v2_12 by go-bindata DO NOT EDIT.
Code generated for package image_v2_12 by go-bindata DO NOT EDIT.
images/image_v2_13
Code generated for package image_v2_13 by go-bindata DO NOT EDIT.
Code generated for package image_v2_13 by go-bindata DO NOT EDIT.
images/image_v2_14
Code generated for package image_v2_14 by go-bindata DO NOT EDIT.
Code generated for package image_v2_14 by go-bindata DO NOT EDIT.
images/image_v2_15
Code generated for package image_v2_15 by go-bindata DO NOT EDIT.
Code generated for package image_v2_15 by go-bindata DO NOT EDIT.
images/image_v2_16
Code generated for package image_v2_16 by go-bindata DO NOT EDIT.
Code generated for package image_v2_16 by go-bindata DO NOT EDIT.
images/image_v2_2
Code generated for package image_v2_2 by go-bindata DO NOT EDIT.
Code generated for package image_v2_2 by go-bindata DO NOT EDIT.
images/image_v2_3
Code generated for package image_v2_3 by go-bindata DO NOT EDIT.
Code generated for package image_v2_3 by go-bindata DO NOT EDIT.
images/image_v2_4
Code generated for package image_v2_4 by go-bindata DO NOT EDIT.
Code generated for package image_v2_4 by go-bindata DO NOT EDIT.
images/image_v2_5
Code generated for package image_v2_5 by go-bindata DO NOT EDIT.
Code generated for package image_v2_5 by go-bindata DO NOT EDIT.
images/image_v2_6
Code generated for package image_v2_6 by go-bindata DO NOT EDIT.
Code generated for package image_v2_6 by go-bindata DO NOT EDIT.
images/image_v2_7
Code generated for package image_v2_7 by go-bindata DO NOT EDIT.
Code generated for package image_v2_7 by go-bindata DO NOT EDIT.
images/image_v2_8
Code generated for package image_v2_8 by go-bindata DO NOT EDIT.
Code generated for package image_v2_8 by go-bindata DO NOT EDIT.
images/image_v2_9
Code generated for package image_v2_9 by go-bindata DO NOT EDIT.
Code generated for package image_v2_9 by go-bindata DO NOT EDIT.
shapes/shape_1
Code generated for package shape_1 by go-bindata DO NOT EDIT.
Code generated for package shape_1 by go-bindata DO NOT EDIT.
shapes/shape_10
Code generated for package shape_10 by go-bindata DO NOT EDIT.
Code generated for package shape_10 by go-bindata DO NOT EDIT.
shapes/shape_11
Code generated for package shape_11 by go-bindata DO NOT EDIT.
Code generated for package shape_11 by go-bindata DO NOT EDIT.
shapes/shape_12
Code generated for package shape_12 by go-bindata DO NOT EDIT.
Code generated for package shape_12 by go-bindata DO NOT EDIT.
shapes/shape_13
Code generated for package shape_13 by go-bindata DO NOT EDIT.
Code generated for package shape_13 by go-bindata DO NOT EDIT.
shapes/shape_2
Code generated for package shape_2 by go-bindata DO NOT EDIT.
Code generated for package shape_2 by go-bindata DO NOT EDIT.
shapes/shape_3
Code generated for package shape_3 by go-bindata DO NOT EDIT.
Code generated for package shape_3 by go-bindata DO NOT EDIT.
shapes/shape_4
Code generated for package shape_4 by go-bindata DO NOT EDIT.
Code generated for package shape_4 by go-bindata DO NOT EDIT.
shapes/shape_5
Code generated for package shape_5 by go-bindata DO NOT EDIT.
Code generated for package shape_5 by go-bindata DO NOT EDIT.
shapes/shape_6
Code generated for package shape_6 by go-bindata DO NOT EDIT.
Code generated for package shape_6 by go-bindata DO NOT EDIT.
shapes/shape_7
Code generated for package shape_7 by go-bindata DO NOT EDIT.
Code generated for package shape_7 by go-bindata DO NOT EDIT.
shapes/shape_8
Code generated for package shape_8 by go-bindata DO NOT EDIT.
Code generated for package shape_8 by go-bindata DO NOT EDIT.
shapes/shape_9
Code generated for package shape_9 by go-bindata DO NOT EDIT.
Code generated for package shape_9 by go-bindata DO NOT EDIT.
thumbs/thumb_1
Code generated for package thumb_1 by go-bindata DO NOT EDIT.
Code generated for package thumb_1 by go-bindata DO NOT EDIT.
thumbs/thumb_2
Code generated for package thumb_2 by go-bindata DO NOT EDIT.
Code generated for package thumb_2 by go-bindata DO NOT EDIT.
thumbs/thumb_3
Code generated for package thumb_3 by go-bindata DO NOT EDIT.
Code generated for package thumb_3 by go-bindata DO NOT EDIT.
thumbs/thumb_4
Code generated for package thumb_4 by go-bindata DO NOT EDIT.
Code generated for package thumb_4 by go-bindata DO NOT EDIT.
thumbs/thumb_5
Code generated for package thumb_5 by go-bindata DO NOT EDIT.
Code generated for package thumb_5 by go-bindata DO NOT EDIT.
tiles/tile_1
Code generated for package tile_1 by go-bindata DO NOT EDIT.
Code generated for package tile_1 by go-bindata DO NOT EDIT.
tiles/tile_2
Code generated for package tile_2 by go-bindata DO NOT EDIT.
Code generated for package tile_2 by go-bindata DO NOT EDIT.
tiles/tile_3
Code generated for package tile_3 by go-bindata DO NOT EDIT.
Code generated for package tile_3 by go-bindata DO NOT EDIT.
tiles/tile_4
Code generated for package tile_4 by go-bindata DO NOT EDIT.
Code generated for package tile_4 by go-bindata DO NOT EDIT.
resources

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL