Java ImageIcon Scale scaleImage(ImageIcon i, int x, int y)

Here you can find the source of scaleImage(ImageIcon i, int x, int y)

Description

scale Image

License

Open Source License

Declaration

public static ImageIcon scaleImage(ImageIcon i, int x, int y) 

Method Source Code

//package com.java2s;
/*/*from ww  w  .j a  va 2 s .  co m*/
 * Hello Minecraft!.
 * Copyright (C) 2013  huangyuhui <huanghongxun2008@126.com>
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see {http://www.gnu.org/licenses/}.
 */

import java.awt.Image;

import javax.swing.ImageIcon;

public class Main {
    public static ImageIcon scaleImage(ImageIcon i, int x, int y) {
        return new ImageIcon(i.getImage().getScaledInstance(x, y, Image.SCALE_SMOOTH));
    }
}

Related

  1. scale(ImageIcon original, int width, int height)
  2. scaleIcon(final ImageIcon icon)
  3. scaleIcon(ImageIcon icon, int size)
  4. scaleIcon(int width, int height, ImageIcon img)
  5. scaleIconTo(ImageIcon icon, int width, int height)
  6. scaleImage(ImageIcon icon)
  7. scaleImage(ImageIcon src, int width, int height)
  8. scaleImageIcon(ImageIcon icon, float scale, int hints)
  9. scaleImageIcon(ImageIcon icon, int newHeight, int newWidth)