Đây là một chương trình thay đổi kích thước ảnh đơn giản viết bằng Java. Vì code chơi cho vui nên chắc cũng có nhiều lỗi chưa kiểm tra hết. Đoạn code resize ảnh rất đơn giản:
private BufferedImage resizeImage(BufferedImage originalImage, int type) throws IOException { BufferedImage resizedImage = new BufferedImage(IMG_WIDTH, IMG_HEIGHT, type); Graphics2D g = resizedImage.createGraphics(); g.drawImage(originalImage, 0, 0, IMG_WIDTH, IMG_HEIGHT, null); g.dispose(); return resizedImage; }
(Theo Butchiso)