可能重复:
php 生成的画廊中的缩略图加载缓慢
代码链接可以在页面底部找到。
该站点从 1and1.co.uk 基于 linux 的系统运行,足以比目前更快地加载图库。
php生成的缩略图加载有点慢,你能告诉我为什么吗?
http://site-perf.com/cgi-bin/show.cgi?id=vz5le19Fp5E
代码: http ://satinaweb.com/tmp/functions.txt
这里是crop.php
:
$sourceimage = $_GET['a'];
function crop($sourceimage) {
// Draw & resize
header('Content-Type: $imsz[\'mime\']');
list($width, $height) = getimagesize($sourceimage);
if($width > $height){
$new_width = 100;
$new_height = 75;
} else {
$new_width = 75;
$new_height = 100;
}
$image = imagecreatefromjpeg($sourceimage);
$image_p = imagecreatetruecolor($new_width, $new_height);
imagecopyresampled($image_p, $image, 0, 0, 0, 0, $new_width, $new_height, $width, $height);
imagejpeg($image_p);
imagedestroy($image_p);
imagedestroy($image);
}
crop($sourceimage);
如果您有任何问题,请询问!