-
-
Notifications
You must be signed in to change notification settings - Fork 2.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Imaging as shared lib #8340
Imaging as shared lib #8340
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.