copy-paste bug fix
authorzapata <zapata>
Sun, 19 Jan 2003 21:59:34 +0000 (21:59 +0000)
committerzapata <zapata>
Sun, 19 Jan 2003 21:59:34 +0000 (21:59 +0000)
source/mircoders/media/ImageProcessor.java

index cc1d498..d09fddf 100755 (executable)
@@ -126,7 +126,7 @@ public class ImageProcessor {
   }
 
   public int getHeight() {
-    return image.getWidth();
+    return image.getHeight();
   }
 
   public int getScaledWidth() {
@@ -134,7 +134,7 @@ public class ImageProcessor {
   }
 
   public int getScaledHeight() {
-    return scaledImage.getWidth();
+    return scaledImage.getHeight();
   }
 
   public void writeScaledData(OutputStream aStream) {