--- parser3/src/classes/image.C 2001/10/16 06:46:25 1.53 +++ parser3/src/classes/image.C 2001/10/16 09:59:23 1.55 @@ -4,7 +4,7 @@ Copyright(c) 2001 ArtLebedev Group(http://www.artlebedev.com) Author: Alexander Petrosyan (http://design.ru/paf) - $Id: image.C,v 1.53 2001/10/16 06:46:25 parser Exp $ + $Id: image.C,v 1.55 2001/10/16 09:59:23 parser Exp $ */ /* @@ -801,9 +801,9 @@ static void _copy(Request& r, const Stri int dw=params->as_int(1+2+2+2, "dest_w must be int", r); int dh=params->size()>1+2+2+2+1?params->as_int(1+2+2+2+1, "dest_h must be int", r):dw; - src.CopyResized(*dest, sx, sy, sw, sh, dx, dy, dw, dh); + src.CopyResampled(*dest, dx, dy, sx, sy, dw, dh, sw, sh); } else - src.Copy(*dest, sx, sy, sw, sh, dx, dy); + src.Copy(*dest, dx, dy, sx, sy, sw, sh); }