Currently, the closest drawImage() has the following signature:
public abstract boolean drawImage(java.awt.Image img, int dx1,int dy1, int dx2, int dy2, int sx1, int sy1, int sx2, int sy2, java.awt.image.ImageObserver observe);
This method draws a rectangular subset of an image onto a Graphics context. However, I want to only draw a circular section of an image. How do I do this?
Thanks