View Single Post
  #43  
Old 10-24-2005, 03:07 PM
 
creative xpress creative xpress is offline
 

Advanced Member
  
Join Date: Aug 2005
Posts: 71
 

Default

That did not make a noticable improvement. Does it matter what combination is active? For example

ImageAntiAlias($photoImage, true);
and
imagecopyresampled($thumb_img, $photoImage, 0,0,0,0, imagesx($thumb_img), imagesy($thumb_img), imagesx($photoImage), imagesy($photoImage));


or

ImageAntiAlias($photoImage, true);
and
imagecopyresized($thumb_img, $photoImage, 0,0,0,0, imagesx($thumb_img), imagesy($thumb_img), imagesx($photoImage), imagesy($photoImage));


or does that not make a difference?
__________________
Xcart
Version: 4.1.6
Reply With Quote