image.h 243 B

1234567891011
  1. typedef struct _image image;
  2. image *
  3. load_image_file(const char *fn, char **reason);
  4. void
  5. free_image(image *im);
  6. void
  7. render_image(image *im, const double affine[6],
  8. unsigned char *buf, int rowstride, int x0, int y0, int x1, int y1);