76 行
1.8 KiB

  1. /*
  2. * libpipi Proper image processing implementation library
  3. * Copyright (c) 2004-2008 Sam Hocevar <sam@zoy.org>
  4. * All Rights Reserved
  5. *
  6. * $Id$
  7. *
  8. * This library is free software. It comes without any warranty, to
  9. * the extent permitted by applicable law. You can redistribute it
  10. * and/or modify it under the terms of the Do What The Fuck You Want
  11. * To Public License, Version 2, as published by Sam Hocevar. See
  12. * http://sam.zoy.org/wtfpl/COPYING for more details.
  13. */
  14. /*
  15. * pipi.h: the full libpipi public API
  16. */
  17. #ifndef __PIPI_H__
  18. #define __PIPI_H__
  19. #ifdef __cplusplus
  20. extern "C"
  21. {
  22. #endif
  23. /* pipi_format_t: this enum is a list of all possible pixel formats for
  24. * our internal images. RGBA32 is the most usual format when an image has
  25. * just been loaded, but RGBA_F is a lot better for complex operations. */
  26. typedef enum
  27. {
  28. PIPI_PIXELS_UNINITIALISED = -1,
  29. PIPI_PIXELS_RGBA32 = 0,
  30. PIPI_PIXELS_RGBA_F = 1,
  31. PIPI_PIXELS_MAX = 2
  32. }
  33. pipi_format_t;
  34. /* pipi_pixels_t: this structure stores a pixel view of an image. */
  35. typedef struct
  36. {
  37. void *pixels;
  38. int w, h, pitch;
  39. }
  40. pipi_pixels_t;
  41. /* pipi_image_t: the main image type */
  42. typedef struct pipi_image pipi_image_t;
  43. extern pipi_image_t *pipi_load(const char *);
  44. extern pipi_image_t *pipi_new(int, int);
  45. extern void pipi_free(pipi_image_t *);
  46. extern void pipi_save(pipi_image_t *, const char *);
  47. extern pipi_pixels_t *pipi_getpixels(pipi_image_t *, pipi_format_t);
  48. extern pipi_image_t *pipi_resize(pipi_image_t *, int, int);
  49. extern pipi_image_t *pipi_gaussian_blur(pipi_image_t *, float);
  50. extern pipi_image_t *pipi_gaussian_blur_ext(pipi_image_t *,
  51. float, float, float, float);
  52. extern void pipi_dither_24to16(pipi_image_t *);
  53. extern void pipi_test(pipi_image_t *);
  54. #ifdef __cplusplus
  55. }
  56. #endif
  57. #endif /* __PIPI_H__ */