Custom image interpolation using Java2D

Hi,

Is it possible to extend Java2D to add new interpolation schemes ?

Nearest neighbor and bilinear aren’t good enough for my application and I’d like to use a bicubic filter and a more complex one.

JAI seems to handle bicubic, but I’d like to keep with Java2D :wink:

Thanks,
Oliver

java.awt.RenderingHints has a bicubic value, so at least this one zill not need to be implemented by you.
About your questions, no answer… i had no time to look further, sorry.