X-Git-Url: http://git.asbjorn.it/?a=blobdiff_plain;f=lib%2Fpython%2Fimage.h;fp=lib%2Fpython%2Fimage.h;h=6362658a83d986396c974f4b5fc8804805b787e8;hb=129968d66dd1bb375a99c7741198e8e9c4eee2e1;hp=0000000000000000000000000000000000000000;hpb=5641844394ba7158cdc8579f8f34a781bc6ac3f2;p=swftools.git diff --git a/lib/python/image.h b/lib/python/image.h new file mode 100644 index 0000000..6362658 --- /dev/null +++ b/lib/python/image.h @@ -0,0 +1,35 @@ +/* image.h + + Python wrapper for librfxswf- image handling + + Part of the swftools package. + + Copyright (c) 2003 Matthias Kramm + + 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ + +#ifndef __image_h__ +#define __image_h__ + +#include +#undef HAVE_STAT +#include "../rfxswf.h" + +int image_getWidth(PyObject*image); +int image_getHeight(PyObject*image); +int image_getBPP(PyObject*image); +RGBA* image_toRGBA(PyObject*image); + +#endif