I replaced the internal ImageFetcher Java with my own implementation using ImageIO. Some of our softwareโs image rendering tools that use these images now use smoothed, scaled images instead of not smoothing. The only change is the source of the image, which is now BufferedImages, not Toolkit-Images.
The question is, where is the difference? Which property makes images scale with anti-aliasing? I always thought that the key to fighting with an alias ONLY depends on the graphics that I draw, but this is clearly wrong.
By the way: unfortunately, I canโt change the renderers.
source
share