From 5cbe0e4e9b9c04322bd31e225ac9e95310a64755 Mon Sep 17 00:00:00 2001 From: kramm Date: Wed, 12 Oct 2005 18:27:47 +0000 Subject: [PATCH] added function for reading images --- lib/python/image.h | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/python/image.h b/lib/python/image.h index 6362658..2617d6a 100644 --- a/lib/python/image.h +++ b/lib/python/image.h @@ -31,5 +31,6 @@ int image_getWidth(PyObject*image); int image_getHeight(PyObject*image); int image_getBPP(PyObject*image); RGBA* image_toRGBA(PyObject*image); +PyObject* rgba_to_image(RGBA*rgba, int width, int height); #endif -- 1.7.10.4