forked from GeyserMC/Geyser
Update SkinProvider.java
Instead of calling the scale method 3 times, just used a cached scaled image
This commit is contained in:
parent
16950bf8f2
commit
203b3b9d46
1 changed files with 2 additions and 1 deletions
|
@ -162,6 +162,7 @@ public class SkinProvider {
|
|||
|
||||
private static byte[] requestImage(String imageUrl, boolean cape) throws Exception {
|
||||
BufferedImage image = ImageIO.read(new URL(imageUrl));
|
||||
BufferedImage scale = scale(image);
|
||||
Geyser.getLogger().debug("Downloaded " + imageUrl);
|
||||
|
||||
if (cape && image.getWidth() <= 64) {
|
||||
|
@ -174,7 +175,7 @@ public class SkinProvider {
|
|||
else if(cape && image.getWidth() >= 64 && image.getWidth() <= 128) {
|
||||
BufferedImage newImage = new BufferedImage(64, 32, BufferedImage.TYPE_INT_RGB);
|
||||
Graphics g = newImage.createGraphics();
|
||||
g.drawImage(scale(image), 0, 0, scale(image).getWidth(), scale(image).getHeight(), null);
|
||||
g.drawImage(scale, 0, 0, scale.getWidth(), scale.getHeight(), null);
|
||||
g.dispose();
|
||||
image = newImage;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue