PIL bug: Antialias.c bicubic filter error

David <[email protected]>
Newsgroups gmane.comp.python.image
Message-ID <[email protected]>
Hi,

this is not that important because a is zero at the moment, but this line in the bicubic_filter

        return (((a * x) - 5*a) * x + 8) * x - 4*a;

should be

        return (((a * x) - 5*a) * x + 8*a) * x - 4*a;

hope this helps, David.

_______________________________________________
Image-SIG maillist  -  [email protected]
http://mail.python.org/mailman/listinfo/image-sig
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.