mirror of
https://github.com/python-pillow/Pillow.git
synced 2025-03-31 23:44:14 +03:00
Merge pull request #8445 from radarhere/apply
This commit is contained in:
commit
029ec8559b
|
@ -62,11 +62,8 @@ apply(PyObject *self, PyObject *args) {
|
||||||
width = imgin->xsize;
|
width = imgin->xsize;
|
||||||
height = imgin->ysize;
|
height = imgin->ysize;
|
||||||
|
|
||||||
if (imgin->type != IMAGING_TYPE_UINT8 || imgin->bands != 1) {
|
if (imgin->type != IMAGING_TYPE_UINT8 || imgin->bands != 1 ||
|
||||||
PyErr_SetString(PyExc_RuntimeError, "Unsupported image type");
|
imgout->type != IMAGING_TYPE_UINT8 || imgout->bands != 1) {
|
||||||
return NULL;
|
|
||||||
}
|
|
||||||
if (imgout->type != IMAGING_TYPE_UINT8 || imgout->bands != 1) {
|
|
||||||
PyErr_SetString(PyExc_RuntimeError, "Unsupported image type");
|
PyErr_SetString(PyExc_RuntimeError, "Unsupported image type");
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user