/usr/include/autotrace/autotrace.h is in libautotrace-dev 0.31.1-16build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 | /* autotrace.h --- Autotrace API
Copyright (C) 2000, 2001, 2002 Martin Weber
The author can be contacted at <martweb@gmx.net>
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.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
#ifndef AUTOTRACE_H
#define AUTOTRACE_H
#include <stdio.h>
#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */
#ifndef N_
#define N_(x) x
#endif /* Not def: N_ */
/* ===================================================================== *
* Typedefs
* ===================================================================== */
#include "types.h"
typedef struct _at_fitting_opts_type at_fitting_opts_type;
typedef struct _at_input_opts_type at_input_opts_type;
typedef struct _at_output_opts_type at_output_opts_type;
typedef struct _at_bitmap_type at_bitmap_type;
typedef struct _at_color_type at_color_type;
typedef struct _at_spline_type at_spline_type;
typedef struct _at_spline_list_type at_spline_list_type;
typedef struct _at_spline_list_array_type at_spline_list_array_type;
#define at_splines_type at_spline_list_array_type
/* Color in RGB */
struct _at_color_type
{
unsigned char r;
unsigned char g;
unsigned char b;
};
/* Third degree is the highest we deal with. */
enum _at_polynomial_degree
{
AT_LINEARTYPE = 1,
AT_QUADRATICTYPE = 2,
AT_CUBICTYPE = 3,
AT_PARALLELELLIPSETYPE = 4,
AT_ELLIPSETYPE = 5,
AT_CIRCLETYPE = 6
/* not the real number of points to define a
circle but to distinguish between a cubic spline */
};
typedef enum _at_polynomial_degree at_polynomial_degree;
/* A Bezier spline can be represented as four points in the real plane:
a starting point, ending point, and two control points. The
curve always lies in the convex hull defined by the four points. It
is also convenient to save the divergence of the spline from the
straight line defined by the endpoints. */
struct _at_spline_type
{
at_real_coord v[4]; /* The control points. */
at_polynomial_degree degree;
at_real linearity;
};
/* Each outline in a character is typically represented by many
splines. So, here is a list structure for that: */
struct _at_spline_list_type
{
at_spline_type *data;
unsigned length;
at_bool clockwise;
at_color_type color;
at_bool open;
};
/* Each character is in general made up of many outlines. So here is one
more list structure. */
struct _at_spline_list_array_type
{
at_spline_list_type *data;
unsigned length;
/* splines bbox */
unsigned short height, width;
/* the values for following members are inherited from
at_fitting_opts_type */
at_color_type * background_color;
at_bool centerline;
at_bool preserve_width;
at_real width_weight_factor;
};
/* Fitting option.
With using at_fitting_opts_doc macro, the description of
each option could be get. e.g. at_fitting_opts_doc(background_color) */
struct _at_fitting_opts_type
{
#define at_doc__background_color \
N_("background-color <hexadezimal>: the color of the background that " \
"should be ignored, for example FFFFFF; " \
"default is no background color.")
at_color_type *background_color;
#define at_doc__color_count \
N_("color-count <unsigned>: number of colors a color bitmap is reduced to, " \
"it does not work on grayscale, allowed are 1..256; " \
"default is 0, that means not color reduction is done.")
unsigned color_count;
#define at_doc__corner_always_threshold \
N_("corner-always-threshold <angle-in-degrees>: if the angle at a pixel is " \
"less than this, it is considered a corner, even if it is within " \
"`corner-surround' pixels of another corner; default is 60. ")
at_real corner_always_threshold;
#define at_doc__corner_surround \
N_("corner-surround <unsigned>: number of pixels on either side of a " \
"point to consider when determining if that point is a corner; " \
"default is 4. ")
unsigned corner_surround;
#define at_doc__corner_threshold \
N_("corner-threshold <angle-in-degrees>: if a pixel, its predecessor(s), " \
"and its successor(s) meet at an angle smaller than this, it's a " \
"corner; default is 100. ")
at_real corner_threshold;
#define at_doc__error_threshold \
N_("error-threshold <real>: subdivide fitted curves that are off by " \
"more pixels than this; default is 2.0. ")
at_real error_threshold;
#define at_doc__filter_iterations \
N_("filter-iterations <unsigned>: smooth the curve this many times " \
"before fitting; default is 4.")
unsigned filter_iterations;
#define at_doc__line_reversion_threshold \
N_("line-reversion-threshold <real>: if a spline is closer to a straight " \
"line than this, weighted by the square of the curve length, keep it a " \
"straight line even if it is a list with curves; default is .01. ")
at_real line_reversion_threshold;
#define at_doc__line_threshold \
N_("line-threshold <real>: if the spline is not more than this far away " \
"from the straight line defined by its endpoints," \
"then output a straight line; default is 1. ")
at_real line_threshold;
#define at_doc__remove_adjacent_corners \
N_("remove-adjacent-corners: remove corners that are adjacent; " \
"default doesn't remove.")
at_bool remove_adjacent_corners;
#define at_doc__tangent_surround \
N_("tangent-surround <unsigned>: number of points on either side of a " \
"point to consider when computing the tangent at that point; " \
" default is 3.")
unsigned tangent_surround;
#define at_doc__despeckle_level \
N_("despeckle-level <unsigned>: 0..20; default is no despeckling. ")
unsigned despeckle_level;
#define at_doc__despeckle_tightness \
N_("despeckle-tightness <real>: 0.0..8.0; default is 2.0. ")
at_real despeckle_tightness;
#define at_doc__centerline \
N_("centerline: trace a character's centerline, rather than its outline. ")
at_bool centerline;
#define at_doc__preserve_width \
N_("preserve-width: whether to preserve linewith with centerline fitting; " \
"default doesn't preserve.")
at_bool preserve_width;
#define at_doc__width_weight_factor \
N_("width-weight-factor: weight factor for fitting the linewidth")
at_real width_weight_factor;
};
struct _at_input_opts_type
{
at_color_type *background_color;
};
struct _at_output_opts_type
{
int dpi; /* DPI is used only in MIF output.*/
};
struct _at_bitmap_type
{
unsigned short height;
unsigned short width;
unsigned char *bitmap;
unsigned int np;
};
enum _at_msg_type
{
AT_MSG_FATAL = 1,
AT_MSG_WARNING,
};
typedef enum _at_msg_type at_msg_type;
typedef
void (* at_msg_func) (at_string msg, at_msg_type msg_type, at_address client_data);
/*
* IO Handler typedefs
*/
typedef
at_bitmap_type (*at_input_read_func) (at_string name,
at_input_opts_type * opts,
at_msg_func msg_func,
at_address msg_data);
typedef
int (*at_output_write_func) (FILE*, at_string name,
int llx, int lly,
int urx, int ury,
at_output_opts_type * opts,
at_splines_type shape,
at_msg_func msg_func,
at_address msg_data);
/*
* Progress handler typedefs
* 0.0 <= percentage <= 1.0
*/
typedef void (* at_progress_func) (at_real percentage,
at_address client_data);
/*
* Test cancel
* Return true if auto-tracing should be stopped.
*/
typedef at_bool (* at_testcancel_func) (at_address client_data);
/* ===================================================================== *
* Functions
* ===================================================================== */
/* --------------------------------------------------------------------- *
* Fitting option related
*
* TODO: internal data access, copy
* --------------------------------------------------------------------- */
at_fitting_opts_type * at_fitting_opts_new(void);
at_fitting_opts_type * at_fitting_opts_copy (at_fitting_opts_type * original);
void at_fitting_opts_free(at_fitting_opts_type * opts);
/* TODO: Gettextize */
#define at_fitting_opts_doc(opt) _(at_doc__##opt)
/* --------------------------------------------------------------------- *
* Input option related
*
* TODO: internal data access
* --------------------------------------------------------------------- */
at_input_opts_type * at_input_opts_new(void);
at_input_opts_type * at_input_opts_copy(at_input_opts_type * original);
void at_input_opts_free(at_input_opts_type * opts);
/* --------------------------------------------------------------------- *
* Output option related
*
* TODO: internal data access
* --------------------------------------------------------------------- */
at_output_opts_type * at_output_opts_new(void);
at_output_opts_type * at_output_opts_copy(at_output_opts_type * original);
void at_output_opts_free(at_output_opts_type * opts);
/* --------------------------------------------------------------------- *
* Bitmap related
*
* TODO: internal data access
* --------------------------------------------------------------------- */
/* There is two way to build at_bitmap_type.
1. Using input reader
Use at_bitmap_read.
at_input_get_handler_by_suffix or
at_input_get_handler will help you to get at_input_read_func.
2. Allocating a bitmap and rendering an image on it by yourself
Use at_bitmap_new.
In both case, you have to call at_bitmap_free when at_bitmap_type *
data are no longer needed. */
at_bitmap_type * at_bitmap_read (at_input_read_func input_reader,
at_string filename,
at_input_opts_type * opts,
at_msg_func msg_func, at_address msg_data);
at_bitmap_type * at_bitmap_new(unsigned short width,
unsigned short height,
unsigned int planes);
at_bitmap_type * at_bitmap_copy(at_bitmap_type * src);
/* We have to export functions that supports internal datum
access. Such functions might be useful for
at_bitmap_new user. */
unsigned short at_bitmap_get_width (at_bitmap_type * bitmap);
unsigned short at_bitmap_get_height (at_bitmap_type * bitmap);
unsigned short at_bitmap_get_planes (at_bitmap_type * bitmap);
void at_bitmap_free (at_bitmap_type * bitmap);
/* --------------------------------------------------------------------- *
* Spline related
*
* TODO: internal data access
* --------------------------------------------------------------------- */
/* at_splines_new
args:
BITMAP is modified in at_splines_new according to opts. Therefore
if you need the original bitmap image, you have to make a backup of
BITMAP with using at_bitmap_copy.
MSG_FUNC and MSG_DATA are used to notify a client errors and
warning from autotrace. NULL is valid value for MSG_FUNC if
the client is not interested in the notifications. */
at_splines_type * at_splines_new (at_bitmap_type * bitmap,
at_fitting_opts_type * opts,
at_msg_func msg_func, at_address msg_data);
/* at_splines_new_full
args:
NOTIFY_PROGRESS is called repeatedly inside at_splines_new_full
to notify the progress of the execution. This might be useful for
interactive applications. NOTIFY_PROGRESS is called following
format:
NOTIFY_PROGRESS (percentage, progress_data);
test_cancel is called repeatedly inside at_splines_new_full
to test whether the execution is canceled or not.
If test_cancel returns TRUE, execution of at_splines_new_full
is stopped as soon as possible and returns NULL. If test_cancel
returns FALSE, nothing happens. test_cancel is called following
format:
TEST_CANCEL (testcancel_data);
NULL is valid value for notify_progress and/or test_cancel if
you don't need to know the progress of the execution and/or
cancel the execution */
at_splines_type * at_splines_new_full (at_bitmap_type * bitmap,
at_fitting_opts_type * opts,
at_msg_func msg_func,
at_address msg_data,
at_progress_func notify_progress,
at_address progress_data,
at_testcancel_func test_cancel,
at_address testcancel_data);
void at_splines_write(at_output_write_func output_writer,
FILE * writeto,
at_string file_name,
at_output_opts_type * opts,
at_splines_type * splines,
at_msg_func msg_func, at_address msg_data);
void at_splines_free (at_splines_type * splines);
/* --------------------------------------------------------------------- *
* Color related
* --------------------------------------------------------------------- */
at_color_type * at_color_new (unsigned char r,
unsigned char g,
unsigned char b);
at_color_type * at_color_copy (at_color_type * original);
at_bool at_color_equal (at_color_type * c1, at_color_type * c2);
void at_color_free (at_color_type * color);
/* --------------------------------------------------------------------- *
* Input related
* --------------------------------------------------------------------- */
at_input_read_func at_input_get_handler (at_string filename);
at_input_read_func at_input_get_handler_by_suffix (at_string suffix);
char ** at_input_list_new (void);
void at_input_list_free(char ** list);
/* at_input_shortlist
return value: Do free by yourself */
char * at_input_shortlist (void);
/* --------------------------------------------------------------------- *
* Output related
* --------------------------------------------------------------------- */
at_output_write_func at_output_get_handler (at_string filename);
at_output_write_func at_output_get_handler_by_suffix (at_string suffix);
char ** at_output_list_new (void);
void at_output_list_free(char ** list);
/* at_output_shortlist
return value: Do free by yourself */
char * at_output_shortlist (void);
/* --------------------------------------------------------------------- *
* Misc
* --------------------------------------------------------------------- */
/* at_version
args:
LONG_FORMAT == true: "AutoTrace version x.y"
LONG_FORMAT == false: "x.y"
return value: Don't free. It is allocated statically */
const char * at_version (at_bool long_format);
/* at_home_site
return value: Don't free. It is allocated statically */
const char * at_home_site (void);
#ifdef __cplusplus
}
#endif /* __cplusplus */
#endif /* AUTOTRACE_H */
|