Skip to content

Instantly share code, notes, and snippets.

@gustavopinto
Created August 20, 2012 16:21
Show Gist options
  • Select an option

  • Save gustavopinto/3405469 to your computer and use it in GitHub Desktop.

Select an option

Save gustavopinto/3405469 to your computer and use it in GitHub Desktop.
BufferedImage resizedImage = new BufferedImage(width, height, originalImage.getType());
Graphics2D g = resizedImage.createGraphics();
g.drawImage(originalImage, 0, 0, width, height, null);
g.dispose();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment