Miletone

Rp0 / Rp1.000.000

Sunday, September 29, 2019

[JAVA] How to add image to JLabel with Scalled

public void logo()  {
        ImageIcon image = new ImageIcon("src/img/image.jpg"); //your location image
        Image image1 = image.getImage().getScaledInstance(jLabel1.getWidth(), jLabel1.getHeight(), Image.SCALE_SMOOTH);
        ImageIcon image2 = new ImageIcon(image1);
        jLabel1.setIcon(image2);
    }

No comments: