I am hoping I have this right - if anyone could review this modification it would be much appreciated.
Basically, the declaration of local variable p on line 1377(version 6.6.9) needs to be changed to a uint32*, and then the line that assigns the offset into the pixels buffer (line 1404 in version 6.6.9) needs to cast the buffer to a uint32* before calculating the offset - i.e:
Code: Select all
p=((uint32*)pixels)+image->columns*i;
Cheers,
Mick