Hallo,
I have a problem with one of my applications, the strange thing is that it happens only by 1 % of the users.
I can't post an URL because the area is password protected.
It's about a page with an overview of products (thumbs) like a catalog. All the images are resized with this function:
function thumbs($file_name_src, $file_name_dest, $weight, $quality=100) {
$size = getimagesize($file_name_src);
$w = number_format($weight, 0, ',', '');
$h = number_format(($size[1]/$size[0])*$weight,0,',','');
$dest = imagecreatetruecolor($w, $h);
imageantialias($dest, TRUE);
$src = imagecreatefromjpeg($file_name_src);
imagecopyresampled($dest, $src, 0, 0, 0, 0, $w, $h, $size[0], $size[1]);
imagejpeg($dest,$file_name_dest, $quality);
imagedestroy($dest);
}
I'm not sure that there is a problem. The two systems where this is happend are windows PC's with IE6.