简体   繁体   中英

Java Slick scale Image without anti-aliasing

In the Slick library (based off of LWJGL), you can scale images after you load them with getScaledCopy , but it will apply anti-aliasing. I want the edges to stay rough; I'm making pixel art. How can I do this?

Based on the comments:

The documentation implies that the filter property of Image s controls how images are scaled. To scale an image without smoothing, use the nearest neighbour filter :

Image original = …;
original.setFilter(Image.FILTER_NEAREST);
Image scaled = original.getScaledCopy();

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM