昨天做了一个远程地址的图片,要将远程的图片保存到地本,然后还要生成缩略图,
php截取图片,php缩略图,php生成缩略图,php如何生成缩略图
如何下载远程图片,我在前面的一篇文章中有涉及,这里就不多说了;
下面我们主要看一下,如何将图片生成缩略图:
[sourcecode plain="language"][/sourcecode]
/**
* 复制图片并对其进行截取
* @dir image
* @filename
* @thumb
* @width
* @height
**/
function DrawImage($dir,$filename,$thumb='',$width='160',$height='120'){
$str_file = $dir.$filename;
$out_file = $dir.$thumb.$filename;
// Content type
header('Content-type: image/jpeg');
$size...