php上傳生成縮略圖
Ⅰ Thinkphp3.2.3 上傳圖片到ftp,同時生成縮略圖。
ThinkPHP上傳文件類:
$upload = new ThinkUpload($config);// 實例化上傳類
使用這個。
如要處理圖片大小。需要另外調用圖像處理:
裁剪圖片
$image=newThinkImage();
$image->open('./1.jpg');
//將圖片裁剪為400x400並保存為corp.jpg
$image->crop(400,400)->save('./crop.jpg');
居中裁剪
$image=newThinkImage();
$image->open('./1.jpg');
//生成一個居中裁剪為150*150的縮略圖並保存為thumb.jpg
$image->thumb(150,150,ThinkImage::IMAGE_THUMB_CENTER)->save('./thumb.jpg');
Ⅱ PHP 圖片上傳生成縮略圖
//2014年3月5日15:08:02因為需要做縮略圖,所以改用thinkphp來做上傳,它支持時間戳命名,方便命名,以及更名
//這是以前網路到的,然後使用的縮略圖代碼,需要cg庫支持
/**
*生成縮略圖
*@[email protected]
*@paramstring源圖絕對完整地址{帶文件名及後綴名}
*@paramstring目標圖絕對完整地址{帶文件名及後綴名}
*@paramint縮略圖寬{0:此時目標高度不能為0,目標寬度為源圖寬*(目標高度/源圖高)}
*@paramint縮略圖高{0:此時目標寬度不能為0,目標高度為源圖高*(目標寬度/源圖寬)}
*@paramint是否裁切{寬,高必須非0}
*@paramint/float縮放{0:不縮放,0<this<1:縮放到相應比例(此時寬高限制和裁切均失效)}
*@returnboolean
*/
functionfileext($file)
{
returnstrtolower(pathinfo($file,PATHINFO_EXTENSION));
}
functionimg2thumb($src_img,$dst_img,$width=75,$height=75,$cut=0,$proportion=0)
{
if(!is_file($src_img))
{
returnfalse;
}
$ot=$this->fileext($dst_img);
$otfunc='image'.($ot=='jpg'?'jpeg':$ot);
$srcinfo=getimagesize($src_img);
$src_w=$srcinfo[0];
$src_h=$srcinfo[1];
$type=strtolower(substr(image_type_to_extension($srcinfo[2]),1));
$createfun='imagecreatefrom'.($type=='jpg'?'jpeg':$type);
$dst_h=$height;
$dst_w=$width;
$x=$y=0;
/**
*縮略圖不超過源圖尺寸(前提是寬或高只有一個)
*/
if(($width>$src_w&&$height>$src_h)||($height>$src_h&&$width==0)||($width>$src_w&&$height==0))
{
$proportion=1;
}
if($width>$src_w)
{
$dst_w=$width=$src_w;
}
if($height>$src_h)
{
$dst_h=$height=$src_h;
}
if(!$width&&!$height&&!$proportion)
{
returnfalse;
}
if(!$proportion)
{
if($cut==0)
{
if($dst_w&&$dst_h)
{
if($dst_w/$src_w>$dst_h/$src_h)
{
$dst_w=$src_w*($dst_h/$src_h);
$x=0-($dst_w-$width)/2;
}
else
{
$dst_h=$src_h*($dst_w/$src_w);
$y=0-($dst_h-$height)/2;
}
}
elseif($dst_wxor$dst_h)
{
if($dst_w&&!$dst_h)//有寬無高
{
$propor=$dst_w/$src_w;
$height=$dst_h=$src_h*$propor;
}
elseif(!$dst_w&&$dst_h)//有高無寬
{
$propor=$dst_h/$src_h;
$width=$dst_w=$src_w*$propor;
}
}
}
else
{
if(!$dst_h)//裁剪時無高
{
$height=$dst_h=$dst_w;
}
if(!$dst_w)//裁剪時無寬
{
$width=$dst_w=$dst_h;
}
$propor=min(max($dst_w/$src_w,$dst_h/$src_h),1);
$dst_w=(int)round($src_w*$propor);
$dst_h=(int)round($src_h*$propor);
$x=($width-$dst_w)/2;
$y=($height-$dst_h)/2;
}
}
else
{
$proportion=min($proportion,1);
$height=$dst_h=$src_h*$proportion;
$width=$dst_w=$src_w*$proportion;
}
$src=$createfun($src_img);
$dst=imagecreatetruecolor($width?$width:$dst_w,$height?$height:$dst_h);
$white=imagecolorallocate($dst,255,255,255);
imagefill($dst,0,0,$white);
if(function_exists('imageresampled'))
{
imageresampled($dst,$src,$x,$y,0,0,$dst_w,$dst_h,$src_w,$src_h);
}
else
{
imageresized($dst,$src,$x,$y,0,0,$dst_w,$dst_h,$src_w,$src_h);
}
$otfunc($dst,$dst_img);
imagedestroy($dst);
imagedestroy($src);
returntrue;
}
Ⅲ php截取視頻第一幀 作為略縮圖,怎麼弄
你的這個需求是能實現的,事先的原理是:視頻網站的自定義視頻縮略圖功能,在這里以優酷視頻為例說明: 1、登錄賬號,進入到個人視頻中心,點擊視頻後面的編輯 2、選擇「自選封面」-然後開始播放視頻,在剛開始的地方,暫停視頻,然後點擊下面的截...
Ⅳ php上傳圖片自動生成縮略圖
########################## index.php
<form action="index.php?item=file_upload_ok" method="post" enctype="multipart/form-data">
<input type="file" name="download" >
<INPUT TYPE="text" NAME="describe" >
<INPUT TYPE="submit" value="提交">
</form>
<?
if(!empty($_GET['item'])){
if($_GET['item'] == 'file_upload_ok')
{
// 引入圖片類
include("thumb_class.php");
$t = new ThumbHandler();
// 獲取上傳文件
$file=$_FILES[download];
$yName = $file[name]; // 原文件名字
$tmpName = $file[tmp_name]; // 原文件句柄
// 圖片 縮放
$t->setSrcImg($tmpName); //原文件
$t->setDstImg("new_x.jpg");//目標圖片
$t->createImg(80,80); //生成圖片 寬 300 高 300
// 圖片原始大小
$t->setSrcImg($tmpName); //原文件
$t->setDstImg("new_d.jpg");//目標圖片
$t->createImg($t->src_w,$t->src_h); //生成圖片 $t->src_w 原圖片寬 $t->src_h 原圖片高
}
}
#############
thumb_class.php 圖片類文件 由於代碼過多請到我 空間 日 記 查看
h t t p ://user.qzone.qq.com/182887459/