No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242
  1. /*
  2. * libpipi Pathetic image processing interface library
  3. * Copyright (c) 2004-2008 Sam Hocevar <sam@zoy.org>
  4. * 2008 Jean-Yves Lamoureux <jylam@lnxscene.org
  5. * All Rights Reserved
  6. *
  7. * $Id$
  8. *
  9. * This library is free software. It comes without any warranty, to
  10. * the extent permitted by applicable law. You can redistribute it
  11. * and/or modify it under the terms of the Do What The Fuck You Want
  12. * To Public License, Version 2, as published by Sam Hocevar. See
  13. * http://sam.zoy.org/wtfpl/COPYING for more details.
  14. */
  15. /*
  16. * pipi.h: the full libpipi public API
  17. */
  18. #ifndef __PIPI_H__
  19. #define __PIPI_H__
  20. #include <pipi_types.h>
  21. #undef __extern
  22. #if defined(_DOXYGEN_SKIP_ME)
  23. #elif defined(_WIN32) && defined(__LIBPIPI__)
  24. # define __extern extern __declspec(dllexport)
  25. #else
  26. # define __extern extern
  27. #endif
  28. #ifdef __cplusplus
  29. extern "C"
  30. {
  31. #endif
  32. /* pipi_scan_t: this enum is a list of all possible scanning methods when
  33. * parsing an image’s pixels. Not all functions support all scanning paths. */
  34. typedef enum
  35. {
  36. PIPI_SCAN_RASTER = 0,
  37. PIPI_SCAN_SERPENTINE = 1
  38. }
  39. pipi_scan_t;
  40. /* pipi_format_t: this enum is a list of all possible pixel formats for
  41. * our internal images. RGBA_U8 is the most usual format when an image has
  42. * just been loaded, but RGBA_F32 is a lot better for complex operations. */
  43. typedef enum
  44. {
  45. PIPI_PIXELS_UNINITIALISED = -1,
  46. PIPI_PIXELS_RGBA_U8 = 0,
  47. PIPI_PIXELS_BGR_U8 = 1,
  48. PIPI_PIXELS_RGBA_F32 = 2,
  49. PIPI_PIXELS_Y_F32 = 3,
  50. PIPI_PIXELS_MASK_U8 = 4,
  51. PIPI_PIXELS_MAX = 5
  52. }
  53. pipi_format_t;
  54. typedef enum
  55. {
  56. PIPI_COLOR_R = 1,
  57. PIPI_COLOR_G = 2,
  58. PIPI_COLOR_B = 4,
  59. PIPI_COLOR_A = 8,
  60. PIPI_COLOR_Y = 16
  61. }
  62. pipi_color_flag_t;
  63. struct pixel_u32
  64. {
  65. uint8_t r, g, b, a;
  66. };
  67. struct pixel_float
  68. {
  69. float r, g, b, a;
  70. };
  71. typedef struct
  72. {
  73. union
  74. {
  75. struct pixel_float pixel_float;
  76. struct pixel_u32 pixel_u32;
  77. };
  78. }
  79. pipi_pixel_t;
  80. /* pipi_pixels_t: this structure stores a pixel view of an image. */
  81. typedef struct
  82. {
  83. void *pixels;
  84. int w, h, pitch, bpp;
  85. size_t bytes;
  86. }
  87. pipi_pixels_t;
  88. /* pipi_tile_t: the internal tile type */
  89. typedef struct pipi_tile pipi_tile_t;
  90. /* pipi_image_t: the main image type */
  91. typedef struct pipi_image pipi_image_t;
  92. /* pipi_context_t: the processing stack */
  93. typedef struct pipi_context pipi_context_t;
  94. /* pipi_histogram_t: the histogram type */
  95. typedef struct pipi_histogram pipi_histogram_t;
  96. /* pipi_command_t: the command type */
  97. typedef struct
  98. {
  99. char const *name;
  100. int argc;
  101. }
  102. pipi_command_t;
  103. __extern pipi_pixel_t *pipi_get_color_from_string(const char* s);
  104. __extern char const * pipi_get_version(void);
  105. __extern pipi_context_t *pipi_create_context(void);
  106. __extern void pipi_destroy_context(pipi_context_t *);
  107. __extern pipi_command_t const *pipi_get_command_list(void);
  108. __extern int pipi_command(pipi_context_t *, char const *, ...);
  109. __extern pipi_tile_t *pipi_get_tile(pipi_image_t *, int, int, int,
  110. pipi_format_t, int);
  111. __extern void pipi_release_tile(pipi_image_t *, pipi_tile_t *);
  112. __extern pipi_tile_t *pipi_create_tile(pipi_format_t, int);
  113. __extern pipi_image_t *pipi_load(char const *);
  114. __extern pipi_image_t *pipi_load_stock(char const *);
  115. __extern pipi_image_t *pipi_new(int, int);
  116. __extern pipi_image_t *pipi_copy(pipi_image_t *);
  117. __extern void pipi_free(pipi_image_t *);
  118. __extern int pipi_save(pipi_image_t *, const char *);
  119. __extern void pipi_set_gamma(double);
  120. __extern pipi_pixels_t *pipi_get_pixels(pipi_image_t *, pipi_format_t);
  121. __extern void pipi_release_pixels(pipi_image_t *, pipi_pixels_t *);
  122. __extern void pipi_set_colorspace(pipi_image_t *, pipi_format_t);
  123. __extern int pipi_get_image_width(pipi_image_t *img);
  124. __extern int pipi_get_image_height(pipi_image_t *img);
  125. __extern int pipi_get_image_pitch(pipi_image_t *img);
  126. __extern int pipi_get_image_last_modified(pipi_image_t *img);
  127. __extern const char* pipi_get_format_name(int format);
  128. __extern double pipi_measure_msd(pipi_image_t *, pipi_image_t *);
  129. __extern double pipi_measure_rmsd(pipi_image_t *, pipi_image_t *);
  130. __extern pipi_image_t *pipi_resize(pipi_image_t *, int, int);
  131. __extern pipi_image_t *pipi_crop(pipi_image_t *, int, int, int, int);
  132. __extern pipi_image_t *pipi_render_random(int, int);
  133. __extern pipi_image_t *pipi_render_bayer(int, int);
  134. __extern pipi_image_t *pipi_render_halftone(int, int);
  135. __extern pipi_image_t *pipi_rgb(pipi_image_t *, pipi_image_t *, pipi_image_t *);
  136. __extern pipi_image_t *pipi_red(pipi_image_t *);
  137. __extern pipi_image_t *pipi_green(pipi_image_t *);
  138. __extern pipi_image_t *pipi_blue(pipi_image_t *);
  139. __extern pipi_image_t *pipi_blit(pipi_image_t *, pipi_image_t *, int, int);
  140. __extern pipi_image_t *pipi_merge(pipi_image_t *, pipi_image_t *, double);
  141. __extern pipi_image_t *pipi_mean(pipi_image_t *, pipi_image_t *);
  142. __extern pipi_image_t *pipi_min(pipi_image_t *, pipi_image_t *);
  143. __extern pipi_image_t *pipi_max(pipi_image_t *, pipi_image_t *);
  144. __extern pipi_image_t *pipi_add(pipi_image_t *, pipi_image_t *);
  145. __extern pipi_image_t *pipi_sub(pipi_image_t *, pipi_image_t *);
  146. __extern pipi_image_t *pipi_difference(pipi_image_t *, pipi_image_t *);
  147. __extern pipi_image_t *pipi_multiply(pipi_image_t *, pipi_image_t *);
  148. __extern pipi_image_t *pipi_divide(pipi_image_t *, pipi_image_t *);
  149. __extern pipi_image_t *pipi_screen(pipi_image_t *, pipi_image_t *);
  150. __extern pipi_image_t *pipi_overlay(pipi_image_t *, pipi_image_t *);
  151. __extern pipi_image_t *pipi_convolution(pipi_image_t *, int, int, double[]);
  152. __extern pipi_image_t *pipi_gaussian_blur(pipi_image_t *, float);
  153. __extern pipi_image_t *pipi_gaussian_blur_ext(pipi_image_t *,
  154. float, float, float, float, float);
  155. __extern pipi_image_t *pipi_box_blur(pipi_image_t *, int);
  156. __extern pipi_image_t *pipi_box_blur_ext(pipi_image_t *, int, int);
  157. __extern pipi_image_t *pipi_brightness(pipi_image_t *, double);
  158. __extern pipi_image_t *pipi_contrast(pipi_image_t *, double);
  159. __extern pipi_image_t *pipi_autocontrast(pipi_image_t *);
  160. __extern pipi_image_t *pipi_invert(pipi_image_t *);
  161. __extern pipi_image_t *pipi_threshold(pipi_image_t *, double);
  162. __extern pipi_image_t *pipi_hflip(pipi_image_t *);
  163. __extern pipi_image_t *pipi_vflip(pipi_image_t *);
  164. __extern pipi_image_t *pipi_rotate(pipi_image_t *, double);
  165. __extern pipi_image_t *pipi_rotate90(pipi_image_t *);
  166. __extern pipi_image_t *pipi_rotate180(pipi_image_t *);
  167. __extern pipi_image_t *pipi_rotate270(pipi_image_t *);
  168. __extern pipi_image_t *pipi_median(pipi_image_t *, int);
  169. __extern pipi_image_t *pipi_median_ext(pipi_image_t *, int, int);
  170. __extern pipi_image_t *pipi_dilate(pipi_image_t *);
  171. __extern pipi_image_t *pipi_erode(pipi_image_t *);
  172. __extern pipi_image_t *pipi_sine(pipi_image_t *, double, double,
  173. double, double);
  174. __extern pipi_image_t *pipi_wave(pipi_image_t *, double, double,
  175. double, double);
  176. __extern pipi_image_t *pipi_order(pipi_image_t *);
  177. __extern pipi_image_t *pipi_tile(pipi_image_t *, int, int);
  178. __extern int pipi_flood_fill(pipi_image_t *,
  179. int, int, float, float, float, float);
  180. __extern int pipi_draw_line(pipi_image_t *, int, int, int, int, uint32_t, int);
  181. __extern int pipi_draw_rectangle(pipi_image_t *, int, int, int, int, uint32_t, int);
  182. __extern int pipi_draw_polyline(pipi_image_t *, int const[], int const[],
  183. int , uint32_t, int);
  184. __extern int pipi_draw_bezier4(pipi_image_t *,int, int, int, int, int, int, int, int, uint32_t, int, int);
  185. __extern pipi_image_t *pipi_reduce(pipi_image_t *, int, double const *);
  186. __extern pipi_image_t *pipi_dither_ediff(pipi_image_t *, pipi_image_t *,
  187. pipi_scan_t);
  188. __extern pipi_image_t *pipi_dither_ordered(pipi_image_t *, pipi_image_t *);
  189. __extern pipi_image_t *pipi_dither_ordered_ext(pipi_image_t *, pipi_image_t *,
  190. double, double);
  191. __extern pipi_image_t *pipi_dither_halftone(pipi_image_t *, double, double);
  192. __extern pipi_image_t *pipi_dither_random(pipi_image_t *);
  193. __extern pipi_image_t *pipi_dither_ostromoukhov(pipi_image_t *, pipi_scan_t);
  194. __extern pipi_image_t *pipi_dither_dbs(pipi_image_t *);
  195. __extern void pipi_dither_24to16(pipi_image_t *);
  196. __extern pipi_histogram_t* pipi_new_histogram(void);
  197. __extern int pipi_get_image_histogram(pipi_image_t *, pipi_histogram_t *, int);
  198. __extern int pipi_free_histogram(pipi_histogram_t*);
  199. __extern int pipi_render_histogram(pipi_image_t *, pipi_histogram_t*, int);
  200. #ifdef __cplusplus
  201. }
  202. #endif
  203. #endif /* __PIPI_H__ */