當前位置:首頁 » 文件管理 » php圖片裁剪上傳

php圖片裁剪上傳

發布時間: 2024-12-17 22:47:47

1. 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;
}

2. 裁剪圖片前,圖片是存在伺服器上,還是緩存

當用戶開始裁剪的時候,圖片已經上傳到了伺服器,通常網站有兩張用戶頭像圖(都是裁剪後的縮略圖),你也可你將用戶上傳的原圖保存,也你可以將元圖片上傳到一個臨時目錄,這個目錄,你覺得佔用空間過大,你定期刪除嘛。

3. 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/

4. 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');
熱點內容
word對齊腳本 發布:2024-12-18 03:33:17 瀏覽:505
我的世界如何找到好友的伺服器 發布:2024-12-18 03:24:48 瀏覽:947
過175平台腳本 發布:2024-12-18 03:23:15 瀏覽:456
編譯運行鍵 發布:2024-12-18 03:08:16 瀏覽:427
白馬上傳 發布:2024-12-18 03:03:58 瀏覽:727
如何改家裡wifi密碼 發布:2024-12-18 03:03:50 瀏覽:412
基金投入演算法 發布:2024-12-18 02:39:58 瀏覽:735
白色解壓泥 發布:2024-12-18 02:39:51 瀏覽:436
存儲棉無成交 發布:2024-12-18 02:39:12 瀏覽:157
維普資料庫免費入口 發布:2024-12-18 02:38:35 瀏覽:344