Conversation
|
Interesting! |
|
@aclark4life Not sure the work will be finished ) Right now I just need various test environments from this PR. |
|
Is there any way in the build we can declare the minimum C version? |
|
Build with Currently, the static PyObject *
cms_transform_apply(CmsTransformObject *self, PyObject *args) {
Py_ssize_t idIn;
Py_ssize_t idOut;
Imaging im;
Imaging imOut;
int result;
if (!PyArg_ParseTuple(args, "nn:apply", &idIn, &idOut)) {
return NULL;
}
im = (Imaging)idIn;
imOut = (Imaging)idOut;
result = pyCMSdoTransform(im, imOut, self->transform);
return Py_BuildValue("i", result);
}So, it just converts an arbitrary |
|
|
|
@Yay295 This involves massive extension redesign, I'm not ready for this ) |
No description provided.