C library that makes captcha.

acetone d319a0f2c0 #1 2 years ago
examples 58a39af741 squares screenshot 2 years ago
patterns bc18e51901 libcaptcha untested 2 years ago
src a97050d5ad preset square/noise 2 years ago
test a97050d5ad preset square/noise 2 years ago
ttf bc18e51901 libcaptcha untested 2 years ago
.gitignore 5ec95f24a2 initial commit 2 years ago
LICENSE bc18e51901 libcaptcha untested 2 years ago
Makefile.am bc18e51901 libcaptcha untested 2 years ago
README.md 283b5875e0 doc with toc 2 years ago
bootstrap bc18e51901 libcaptcha untested 2 years ago
configure.ac a97050d5ad preset square/noise 2 years ago
make-singleh.sh d319a0f2c0 #1 2 years ago

README.md

Libcaptcha

Highly customizable captcha making library.

some squares

Table of contents

Introduction

The main idea was to make a general purpose graphic library with no dependencies in C to draw some primitives with text in a web application. And then I've noticed that I don't have a good captcha to prevent robots to post their shit, so, now here it is.

Features

  • TTF font support
  • UTF-8 support, you can use any glyph
  • An easy API (I suppose)
  • Zero dependencies
  • Entirely written in C

How to install

It is as simple as

./bootstrap
./configure
make
make install

Principles

I thought to name this section "limitations", because libcaptcha doesn't provide functionality to align fonts, work with alpha channels and so on. But captcha does not need those "features". Rather vice versa - it requires to be ugly and random.

The general idea is to provide a simplified API (I call it level zero or preset0) and more advanced primitives.

The simplified functionality consists of 3 simple steps:

  • Create a font object (with text and other options)
  • Render something (using pattern generators)
  • Save file

The advanced functions are quite low level stuff, that requires some understaindig of every step. I've provided some examples which indended to help you with understanding those "low level" functions. By you I mean me in the future :)

How to use

First of all we need some text, and this text should be placed using some random values. Don't warry, preset functions make all those random stuff by itself.

Here is example how to use lc_preset_text() :

  lc_bmp * text = lc_preset_text( // returns single channel lc_bmp*
    "path_to_font.ttf",           // path to font file
    "HELLOWORLD",                 // our text
    38,                           // minimum font size
    50,                           // maximum font size (if zero, all glyphs will be 38)
    1,                            // 1 - rotate characters, 0 - off
    10,                           // horizontal random offset
    10);                          // vertical random offset

There's some simply functions that make noise and square captchas.

  lc_bmp * bmp = lc_preset_square(
    text,                         // is our font object with text
    1,                            // spacing
    2);                           // square size (2 is very small)

Lets save our image into a png file:

 lc_save_png("helloworld.png", bmp);

Don't forget to free() memory:

  lc_free(bmp);
  lc_free(text);

Also you can make some noisy pattern instead of squares, its usage is simple:

  lc_bmp * noise = lc_preset_noise(text);

That's it.

Advanced Use

Check out examples

Get familiar with general concept. example1.c

example1

How to make a random sized glyphs. example2.c

example2

Apply random positions for glyphs. example3.c

example3

Get familiar with patterns made from png images. example4.c

example4

Patterns, patterns everywhere. example5.c

example5

Some crazy stuff. example6.c

example6

Don't forget to use lc_free() to free all the stuff libcaptcha returns to you.

I've noticed that it is very easy to get lost sometimes, just use valgrind.

License

GPLv2

  This program is free software; you can redistribute it and/or
  modify it under the terms of the GNU General Public License
  as published by the Free Software Foundation; either version 2
  of the License, or (at your option) any later version.

  This program is distributed in the hope that it will be useful,
  but WITHOUT ANY WARRANTY; without even the implied warranty of
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  GNU General Public License for more details.
  Author: g0tsu
  Email:  g0tsu at dnmx.0rg