correcting scaling bug

This commit is contained in:
Danny Yoo 2012-03-06 11:05:01 -05:00
parent 54cbc623fb
commit 6871bbf07c
2 changed files with 5 additions and 2 deletions

View File

@ -619,8 +619,8 @@ var ScaleImage = function(xFactor, yFactor, img) {
Math.floor((img.getHeight() * yFactor) / 2));
this.img = img;
this.width = img.getWidth() * xFactor;
this.height = img.getHeight() * yFactor;
this.width = Math.floor(img.getWidth() * xFactor);
this.height = Math.floor(img.getHeight() * yFactor);
this.xFactor = xFactor;
this.yFactor = yFactor;
};

View File

@ -116,6 +116,9 @@
;(define D (overlay XDOG BG))
;(define CDOG (overlay (clipart/url DOGURL) BG))
;D
(image-width DOG)
(image-height DOG)
(define colors (image->color-list DOG))
(displayln (length colors))