I'm using
Graphics.drawImage(Image img, int dx1, int dy1, int dx2, int dy2, int sx1,
int sy1, int sx2, int sy2, ImageObserver obs)
but am having trouble determining if the second coordinates, (dx2, dy2) and
(sx2, sy2), are inclusive or not. For example, if I say
g.drawImage(img, 0,0, 10,10, 5,5, 15,15, null);
will the source pixel (15,15) be drawn on the destination pixel (10,10)? Or
will the source (14,14) be drawn on (9,9)?
I gathered from the documentation that the coordinates would be inclusive,
but I don't seem to be getting that effect in operation.
Brian
===========================================================================
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff JAVA2D-INTEREST". For general help, send email to
[EMAIL PROTECTED] and include in the body of the message "help".