利用Javascript裁剪圖片并存儲(chǔ)的簡單實(shí)現(xiàn)

前言

成都創(chuàng)新互聯(lián)公司-專業(yè)網(wǎng)站定制、快速模板網(wǎng)站建設(shè)、高性價(jià)比達(dá)州網(wǎng)站開發(fā)、企業(yè)建站全套包干低至880元,成熟完善的模板庫,直接使用。一站式達(dá)州網(wǎng)站制作公司更省心,省錢,快速模板網(wǎng)站建設(shè)找我們,業(yè)務(wù)覆蓋達(dá)州地區(qū)。費(fèi)用合理售后完善,10年實(shí)體公司更值得信賴。

就我而言,頁面上的設(shè)計(jì)比較靈動(dòng)的部分,其實(shí)不是很多,諸如滑動(dòng)驗(yàn)證碼,圖片裁剪等比較好的交互設(shè)計(jì)。

從剛開始工作的時(shí)候,我就想把這些東西了解下,無奈一直沒這個(gè)需求,乘著今天的空閑,研究了一下午,期間遇到了大大小小的問題,一直備受折磨,這其實(shí)也反映一個(gè)問題,我的

還是比較薄弱。

實(shí)現(xiàn)效果:

用戶點(diǎn)擊上傳圖片后,頁面顯示所上傳的圖片,并且出現(xiàn)裁剪框和兩個(gè)預(yù)覽區(qū)域,最后點(diǎn)擊裁剪按鈕保存裁剪的圖片到服務(wù)器上。 

效果很簡單,整個(gè)過程我遇到的兩個(gè)難點(diǎn),第一個(gè)是裁剪的JS效果,第二個(gè)則是圖片數(shù)據(jù)的處理。 

對于第一個(gè)問題,我引用了網(wǎng)上的一個(gè)插件,就我感覺來說,裁剪過程用戶的滿意度只能算一般,因?yàn)樗荒懿眉粽叫螀^(qū)域,就算邊框上有八個(gè)拉動(dòng)設(shè)置,但是拉動(dòng)框時(shí)還是按正方形縮放,就這點(diǎn)不太讓我滿意。

實(shí)現(xiàn)方法如下: 

以下是簡單的頁面設(shè)計(jì):

<div ><img id="target"></div>
<div ><img  id="preview" ></div>
<div ><img  id="preview2" ></div>
<form action="{:U('/test/crop_deal')}" method="post" onsubmit="return checkCoords()" enctype="multipart/form-data" id="form">
<input type="file" name="file" onchange="change_image(this)">
<input type="hidden" id="x" name="x" />
<input type="hidden" id="y" name="y" />
<input type="hidden" id="w" name="w" />
<input type="hidden" id="h" name="h" />
<input type="submit" value="裁剪"/>
</form>

下面是JS代碼:

function change_image(file){
var reader = new FileReader();
reader.onload = function(evt){
$("#target").attr('src',evt.target.result);
$('#preview').attr('src',evt.target.result);
$('#preview2').attr('src',evt.target.result);
// $('#target').css({"height":"600px","width":"600px"});
// 限制了大小會(huì)影響到截圖的效果
};
reader.readAsDataURL(file.files[0]);

var jcrop_api, boundx, boundy;

setTimeout(function(){


$('#target').Jcrop({
minSize: [48,48],
setSelect: [0,0,190,190],
onChange: updatePreview,
onSelect: updatePreview,
onSelect: updateCoords,
aspectRatio: 1
},
function(){
// Use the API to get the real image size
var bounds = this.getBounds();
boundx = bounds[0];
boundy = bounds[1];
// Store the API in the jcrop_api variable
jcrop_api = this;
});

function updatePreview(c){
if (parseInt(c.w) > 0)
{
var rx = 48 / c.w; //小頭像預(yù)覽Div的大小
var ry = 48 / c.h;

$('#preview').css({
width: Math.round(rx * boundx) + 'px',
height: Math.round(ry * boundy) + 'px',
marginLeft: '-' + Math.round(rx * c.x) + 'px',
marginTop: '-' + Math.round(ry * c.y) + 'px'
});
}
{
var rx = 199 / c.w; //大頭像預(yù)覽Div的大小
var ry = 199 / c.h;
$('#preview2').css({
width: Math.round(rx * boundx) + 'px',
height: Math.round(ry * boundy) + 'px',
marginLeft: '-' + Math.round(rx * c.x) + 'px',
marginTop: '-' + Math.round(ry * c.y) + 'px'
});
}
};


function updateCoords(c)
{
$('#x').val(c.x);
$('#y').val(c.y);
$('#w').val(c.w);
$('#h').val(c.h);
};

},500);

}

這里稍作兩點(diǎn)提醒:

其一:不要忘記在頁面頭部引入插件:

  <script src="/plug/js/jquery.min.js" type="text/javascript"></script>
  <script src="/plug/js/jquery.Jcrop.min.js" type="text/javascript"></script>
  <link rel="stylesheet" href="/plug/css/Jcrop.css" rel="external nofollow" type="text/css" />

其二:有些人眼尖的話可能看到了JS里有個(gè)定時(shí),同時(shí)心理是不是很疑惑這不是有點(diǎn)多此一舉嗎?其實(shí)不是,上傳圖片到JS加載到頁面上,是需要時(shí)間的,這個(gè)定時(shí)的意義在于

等到圖片被JS加載到頁面上時(shí)才去加載裁剪效果,這里也是反復(fù)實(shí)驗(yàn)后得出的做法。 

后端PHP處理我用的是THINKPHP框架,版本是3.1.3

貼上代碼:

function crop_deal(){
  ob_clean();
  import ( 'ORG.Net.UploadFile' );
  $upload = new UploadFile ();
  $upload->maxSize = 2000000;
  $upload->allowExts = array (
    'jpg',
    'gif',
    'png',
    'jpeg'
  );
  $upload->savePath = './upload/test/';
  $upload->autoSub = true;
  $upload->subType = 'date';
  $upload->dateFormat = 'Ymd';
  if ($upload->upload () ) {
    $info = $upload->getUploadFileInfo();
    $new_path = "./upload/test/thumb".date('Ymd');
    $file_store = $new_path."/".date('YmdHis').".jpg";
    if(!file_exists($new_path)){
      mkdir($new_path,0777,true);
    }
    $source_path = "http://".$_SERVER['HTTP_HOST']."/upload/test/".$info[0]['savename'];
    $img_size = getimagesize($source_path);
    $width = $img_size[0];
    $height = $img_size[1];  
    $mime = $img_size['mime'];
    $srcImg = imagecreatefromstring(file_get_contents($source_path));
    $cropped_img = imagecreatetruecolor($_POST['w'], $_POST['h']);
    //縮放
    // imagecopyresampled($cropped_img,$srcImg,0,0,$_POST['x'],$_POST['y'],$_POST['w'],$_POST['h'],$width,$height);
    //裁剪
    imagecopy($cropped_img,$srcImg,0,0,$_POST['x'],$_POST['y'],$_POST['w'],$_POST['h']);
    header("Content-Type:image/jpeg");
    imagejpeg($cropped_img,$file_store);
    imagedestroy($srcImg);
    imagedestroy($cropped_img);
  }

}

這里就是調(diào)用GD庫里創(chuàng)建圖像的一系列方法,最重要就是imagecopy() ,它是將原圖按規(guī)定的裁剪位置,裁剪大小復(fù)制到新的圖片上去,這也說明了一件事,頁面用戶在裁剪圖片

的時(shí)候其實(shí)前端并沒有對圖片操作,而是得到裁剪時(shí)的坐標(biāo)位置,裁剪大小,然后提交到PHP操作??!

總結(jié)

以上就是這篇文章的全部內(nèi)容了,希望本文的內(nèi)容對大家的學(xué)習(xí)或者使用Swift能帶來一定的幫助,如果有疑問大家可以留言交流,謝謝大家對創(chuàng)新互聯(lián)的支持。

網(wǎng)站名稱:利用Javascript裁剪圖片并存儲(chǔ)的簡單實(shí)現(xiàn)
文章起源:http://muchs.cn/article18/gcicdp.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供品牌網(wǎng)站設(shè)計(jì)、商城網(wǎng)站、移動(dòng)網(wǎng)站建設(shè)、企業(yè)網(wǎng)站制作、面包屑導(dǎo)航、關(guān)鍵詞優(yōu)化

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)

搜索引擎優(yōu)化