minor report improvements

svn: r6259
This commit is contained in:
Brian Matherly
2006-04-04 04:14:51 +00:00
parent a30cfaeb12
commit d52f881814
4 changed files with 24 additions and 13 deletions

View File

@@ -84,7 +84,7 @@ class ImgManip:
def fmt_scale_data(self, x, y, cnv):
fd, dest = tempfile.mkstemp()
scaled = self.img.scale_simple(width, height, gtk.gdk.INTERP_BILINEAR)
scaled = self.img.scale_simple(x, y, gtk.gdk.INTERP_BILINEAR)
self.img.save(dest,cnv)
fh = open(dest)
data = fh.read()