From 86a32dbb40f67ba388714d1f43acb7f47607a013 Mon Sep 17 00:00:00 2001 From: Ziver Koc Date: Sat, 18 Dec 2010 00:39:28 +0000 Subject: [PATCH] --- src/zutil/image/ImageUtil.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/zutil/image/ImageUtil.java b/src/zutil/image/ImageUtil.java index 4432062..99a48ba 100644 --- a/src/zutil/image/ImageUtil.java +++ b/src/zutil/image/ImageUtil.java @@ -14,11 +14,11 @@ public class ImageUtil { /** * Resizes a BufferedImage * - * @param source is the image to resize - * @param width is the wanted width - * @param height is the wanted height - * @param keep_aspect is if the aspect ratio of the image should be kept - * @return the resized image + * @param source is the image to resize + * @param width is the wanted width + * @param height is the wanted height + * @param keep_aspect is if the aspect ratio of the image should be kept + * @return the resized image */ public static BufferedImage scale(BufferedImage source, int width, int height, boolean keep_aspect){ double scale_width = (double)width / source.getWidth();