if ($this->dest_file == STDOUT)
$this->OutputThumbImage ( $dest_image );
else
$this->SaveThumbImage ( $this->dest_file, $dest_image );
imagedestroy ( $src_image );
imagedestroy ( $dest_image );
}
} // End of class definition
?>
使用方法:
1、首先引用该php文件(不要告诉我不会)
2、调用代码
复制代码 代码如下:
$tis = new ThumbnailImage();
$tis->src_file = "这里写源文件的路径"
$tis->dest_type = THUMB_JPEG;//生成图片的类型是 jpg
$tis->dest_file = '这里写目标文件的路径';
$tis->max_width = 120;//自适应大小,但是最大宽度为120
$tis->max_height = 4000; //自适应大小,但是最大高度为4000
$tis->Output();
代码关键在于 max_width 和max_height,填多少,就会帮你生成一个 差不多大小的文件,一般来说除非你的图片很有个性,譬如很长,否则缩略图生成的还是很体贴的。
您可能感兴趣的文章: