static PyObject *ImageopError;
static PyObject *
-imageop_crop(self, args)
- PyObject *self;
-PyObject *args;
+imageop_crop(PyObject *self, PyObject *args)
{
char *cp, *ncp;
short *nsp;
}
static PyObject *
-imageop_scale(self, args)
- PyObject *self;
-PyObject *args;
+imageop_scale(PyObject *self, PyObject *args)
{
char *cp, *ncp;
short *nsp;
/* Note: this routine can use a bit of optimizing */
static PyObject *
-imageop_tovideo(self, args)
- PyObject *self;
-PyObject *args;
+imageop_tovideo(PyObject *self, PyObject *args)
{
int maxx, maxy, x, y, len;
int i;
}
static PyObject *
-imageop_grey2mono(self, args)
- PyObject *self;
-PyObject *args;
+imageop_grey2mono(PyObject *self, PyObject *args)
{
int tres, x, y, len;
unsigned char *cp, *ncp;
}
static PyObject *
-imageop_grey2grey4(self, args)
- PyObject *self;
-PyObject *args;
+imageop_grey2grey4(PyObject *self, PyObject *args)
{
int x, y, len;
unsigned char *cp, *ncp;
}
static PyObject *
-imageop_grey2grey2(self, args)
- PyObject *self;
-PyObject *args;
+imageop_grey2grey2(PyObject *self, PyObject *args)
{
int x, y, len;
unsigned char *cp, *ncp;
}
static PyObject *
-imageop_dither2mono(self, args)
- PyObject *self;
-PyObject *args;
+imageop_dither2mono(PyObject *self, PyObject *args)
{
int sum, x, y, len;
unsigned char *cp, *ncp;
}
static PyObject *
-imageop_dither2grey2(self, args)
- PyObject *self;
-PyObject *args;
+imageop_dither2grey2(PyObject *self, PyObject *args)
{
int x, y, len;
unsigned char *cp, *ncp;
}
static PyObject *
-imageop_mono2grey(self, args)
- PyObject *self;
-PyObject *args;
+imageop_mono2grey(PyObject *self, PyObject *args)
{
int v0, v1, x, y, len, nlen;
unsigned char *cp, *ncp;
}
static PyObject *
-imageop_grey22grey(self, args)
- PyObject *self;
-PyObject *args;
+imageop_grey22grey(PyObject *self, PyObject *args)
{
int x, y, len, nlen;
unsigned char *cp, *ncp;
}
static PyObject *
-imageop_grey42grey(self, args)
- PyObject *self;
-PyObject *args;
+imageop_grey42grey(PyObject *self, PyObject *args)
{
int x, y, len, nlen;
unsigned char *cp, *ncp;
}
static PyObject *
-imageop_rgb2rgb8(self, args)
- PyObject *self;
-PyObject *args;
+imageop_rgb2rgb8(PyObject *self, PyObject *args)
{
int x, y, len, nlen;
Py_UInt32 *cp;
}
static PyObject *
-imageop_rgb82rgb(self, args)
- PyObject *self;
-PyObject *args;
+imageop_rgb82rgb(PyObject *self, PyObject *args)
{
int x, y, len, nlen;
unsigned char *cp;
}
static PyObject *
-imageop_rgb2grey(self, args)
- PyObject *self;
-PyObject *args;
+imageop_rgb2grey(PyObject *self, PyObject *args)
{
int x, y, len, nlen;
Py_UInt32 *cp;
}
static PyObject *
-imageop_grey2rgb(self, args)
- PyObject *self;
-PyObject *args;
+imageop_grey2rgb(PyObject *self, PyObject *args)
{
int x, y, len, nlen;
unsigned char *cp;
/*
static object *
-imageop_mul(self, args)
- object *self;
-object *args;
+imageop_mul(object *self, object *args)
{
char *cp, *ncp;
int len, size, x, y;