Skip to content

Instantly share code, notes, and snippets.

@kharmaodo
kharmaodo / ImageResizer.java
Created August 11, 2021 16:26 — forked from madan712/ImageResizer.java
This is a simple Java program which will resize an image to any other desire size.
/* ImageResizer.java */
import java.awt.Graphics2D;
import java.awt.image.BufferedImage;
import java.io.File;
import java.io.IOException;
import javax.imageio.ImageIO;
public class ImageResizer {
#! /usr/bin/env python
###############################################################################
##
## Copyright 2012 Jeet Sukumaran.
##
## 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.