Hello, In jdk 1.4.1 is the bicubic interpolation implemented? I'm doing some simple image scaling (scale down, thumbnail) like this:
AffineTransform aScaleTransform = AffineTransform.getScaleInstance( aScaleFactor, aScaleFactor); AffineTransformOp aScaleOp = new AffineTransformOp( aScaleTransform, aRenderingHints ); aScaleOp.filter( sourceImage, destinationBuffer); Where I try different rendering quality and interpolation values in the renderingHints. Curiously, VALUE_INTERPOLATION_BICUBIC looks *worse* than BILINEAR. Will the rendering engine honor the request for BICUBIC interpolation, or can it ignore it (it is just a hint after all). thanks Joseph Panico [EMAIL PROTECTED] _________________________________________________________________ Get faster connections -- switch to MSN Internet Access! http://resourcecenter.msn.com/access/plans/default.asp =========================================================================== 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".
