mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-12-26 18:06:18 +03:00
73 lines
1.8 KiB
C
73 lines
1.8 KiB
C
|
#include <Python.h>
|
||
|
#include <webp/encode.h>
|
||
|
#include <webp/decode.h>
|
||
|
|
||
|
PyObject* WebPEncodeRGB_wrapper(PyObject* self, PyObject* args)
|
||
|
{
|
||
|
PyStringObject *rgb_string;
|
||
|
int width;
|
||
|
int height;
|
||
|
int stride;
|
||
|
float quality_factor;
|
||
|
|
||
|
if (!PyArg_ParseTuple(args, "Siiif", &rgb_string, &width, &height, &stride, &quality_factor)) {
|
||
|
Py_INCREF(Py_None);
|
||
|
return Py_None;
|
||
|
}
|
||
|
|
||
|
uint8_t *rgb;
|
||
|
Py_ssize_t size;
|
||
|
PyString_AsStringAndSize((struct PyObject *) rgb_string, &rgb, &size);
|
||
|
|
||
|
if (stride * height > size) {
|
||
|
Py_INCREF(Py_None);
|
||
|
return Py_None;
|
||
|
}
|
||
|
|
||
|
uint8_t *output;
|
||
|
size_t ret_size = WebPEncodeRGB(rgb, width, height, stride, quality_factor, &output);
|
||
|
if (ret_size > 0) {
|
||
|
PyObject *ret = PyString_FromStringAndSize(output, ret_size);
|
||
|
free(output);
|
||
|
return ret;
|
||
|
}
|
||
|
Py_INCREF(Py_None);
|
||
|
return Py_None;
|
||
|
|
||
|
}
|
||
|
|
||
|
PyObject* WebPDecodeRGB_wrapper(PyObject* self, PyObject* args)
|
||
|
{
|
||
|
PyStringObject *webp_string;
|
||
|
float quality_factor;
|
||
|
|
||
|
if (!PyArg_ParseTuple(args, "S", &webp_string)) {
|
||
|
Py_INCREF(Py_None);
|
||
|
return Py_None;
|
||
|
}
|
||
|
uint8_t *webp;
|
||
|
Py_ssize_t size;
|
||
|
PyString_AsStringAndSize((struct PyObject *) webp_string, &webp, &size);
|
||
|
|
||
|
int width;
|
||
|
int height;
|
||
|
uint8_t *output = WebPDecodeRGB(webp, size, &width, &height);
|
||
|
|
||
|
PyObject *ret = PyString_FromStringAndSize(output, width * height * 3);
|
||
|
free(output);
|
||
|
return Py_BuildValue("Sii", ret, width, height);
|
||
|
}
|
||
|
|
||
|
static PyMethodDef webpMethods[] =
|
||
|
{
|
||
|
{"WebPEncodeRGB", WebPEncodeRGB_wrapper, METH_VARARGS, "WebPEncodeRGB"},
|
||
|
{"WebPDecodeRGB", WebPDecodeRGB_wrapper, METH_VARARGS, "WebPEncodeRGB"},
|
||
|
{NULL, NULL}
|
||
|
};
|
||
|
|
||
|
void init_webp()
|
||
|
{
|
||
|
PyObject* m;
|
||
|
m = Py_InitModule("_webp", webpMethods);
|
||
|
}
|