專案中要求圖片上傳並裁剪的功能,之前也有接觸過很多圖片裁剪外掛,效果體驗不是很好,今天推薦一款好用的外掛-cropper,超級好用,裁剪功能豐富,滿足了各種需求。
功能:
1:點選選擇圖片,彈出資料夾選擇桌面 檔案
2:選擇檔案之後,開啟編輯圖片的頁面,開始裁剪圖片
外掛下載地址:http://www.jq22.com/jquery-info18167
外掛描述:croppic影像裁剪將滿足您的需求,影像載入效果、展現效果以及裁剪都非常棒,相信看到Demo後一定會喜歡上此外掛.
程式碼:
1:引入相關的css和js檔案,cropper.min.css,ImgCropping.css,cropper.min.js等,檔案下載地址:http://www.jq22.com/jquery-info18167
<link rel="stylesheet" href="css/cropper.min.css">
<link rel="stylesheet" href="css/ImgCropping.css">
<script src="http://www.jq22.com/jquery/jquery-1.10.2.js"></script>
<script src="js/cropper.min.js"></script>
2:具體程式碼如下:前端部分
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>基於cropper.js的圖片裁剪</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
<meta name="format-detection" content="telephone=no">
<link rel="stylesheet" href="css/cropper.min.css">
<link rel="stylesheet" href="css/ImgCropping.css">
<style>
.str {
width: 150px;
height: 200px;
border: solid 1px #e3e3e3;
padding: 5px;
margin-top: 10px
}
</style>
</head>
<body>
<label title="上傳圖片" for="chooseImg" class="l-btn choose-btn">
<input type="file" accept="image/jpg,image/jpeg,image/png" name="file" id="chooseImg" class="hidden" onchange="selectImg(this)">
選擇圖片
</label>
<div class="str">
<img id="finalImg" src="" width="100%">
</div>
<!--圖片裁剪框 start-->
<div style="display: none" class="tailoring-container">
<div class="black-cloth" onclick="closeTailor(this)"></div>
<div class="tailoring-content">
<div class="tailoring-content-one">
<div class="close-tailoring" onclick="closeTailor(this)">×</div>
</div>
<div class="tailoring-content-two">
<div class="tailoring-box-parcel">
<img id="tailoringImg">
</div>
<div class="preview-box-parcel">
<p>圖片預覽:</p>
<div class="square previewImg"></div>
<!-- <div class="circular previewImg"></div>-->
</div>
</div>
<div class="tailoring-content-three">
<button class="l-btn cropper-reset-btn">復位</button>
<button class="l-btn cropper-rotate-btn">旋轉</button>
<button class="l-btn cropper-scaleX-btn">換向</button>
<button class="l-btn sureCut" id="sureCut">確定</button>
</div>
</div>
</div>
<!--圖片裁剪框 end-->
<script src="http://www.jq22.com/jquery/jquery-1.10.2.js"></script>
<script src="js/cropper.min.js"></script>
<script type="text/javascript">
//彈出框水平垂直居中
(window.onresize = function() {
var win_height = $(window).height();
var win_width = $(window).width();
if (win_width <= 768) {
$(".tailoring-content").css(
{
"top" : (win_height - $(".tailoring-content")
.outerHeight()) / 2,
"left" : 0
});
} else {
$(".tailoring-content").css(
{
"top" : (win_height - $(".tailoring-content")
.outerHeight()) / 2,
"left" : (win_width - $(".tailoring-content")
.outerWidth()) / 2
});
}
})();
// 選擇檔案觸發事件
function selectImg(file) {
//檔案為空,返回
if (!file.files || !file.files[0]) {
return;
}
$(".tailoring-container").toggle();
var reader = new FileReader();
reader.onload = function(evt) {
var replaceSrc = evt.target.result;
// 更換cropper的圖片
$('#tailoringImg').cropper('replace', replaceSrc, false);// 預設false,適應高度,不失真
}
reader.readAsDataURL(file.files[0]);
}
// cropper圖片裁剪
$('#tailoringImg').cropper({
aspectRatio : 1 / 1,// 預設比例
preview : '.previewImg',// 預覽檢視
guides : false, // 裁剪框的虛線(九宮格)
autoCropArea : 0.5, // 0-1之間的數值,定義自動剪裁區域的大小,預設0.8
movable : false, // 是否允許移動圖片
dragCrop : true, // 是否允許移除當前的剪裁框,並通過拖動來新建一個剪裁框區域
movable : true, // 是否允許移動剪裁框
resizable : true, // 是否允許改變裁剪框的大小
zoomable : false, // 是否允許縮放圖片大小
mouseWheelZoom : false, // 是否允許通過滑鼠滾輪來縮放圖片
touchDragZoom : true, // 是否允許通過觸控移動來縮放圖片
rotatable : true, // 是否允許旋轉圖片
crop : function(e) {
// 輸出結果資料裁剪影像。
}
});
// 旋轉
$(".cropper-rotate-btn").on("click", function() {
$('#tailoringImg').cropper("rotate", 45);
});
// 復位
$(".cropper-reset-btn").on("click", function() {
$('#tailoringImg').cropper("reset");
});
// 換向
var flagX = true;
$(".cropper-scaleX-btn").on("click", function() {
if (flagX) {
$('#tailoringImg').cropper("scaleX", -1);
flagX = false;
} else {
$('#tailoringImg').cropper("scaleX", 1);
flagX = true;
}
flagX != flagX;
});
// 確定按鈕點選事件
$("#sureCut").on("click", function() {
if ($("#tailoringImg").attr("src") == null) {
return false;
} else {
var cas = $('#tailoringImg').cropper('getCroppedCanvas');// 獲取被裁剪後的canvas
var base64 = cas.toDataURL('image/jpeg'); // 轉換為base64
$("#finalImg").prop("src", base64);// 顯示圖片
uploadFile(encodeURIComponent(base64))//編碼後上傳伺服器
closeTailor();// 關閉裁剪框
}
});
// 關閉裁剪框
function closeTailor() {
$(".tailoring-container").toggle();
}
//ajax請求上傳
function uploadFile(file) {
$.ajax({
url : '/demo/upload.do',
type : 'POST',
data : "file=" + file,
async : true,
success : function(data) {
console.log(data)
}
});
}
</script>
</body>
</html>
3:後臺Java程式碼:
利用cropper外掛裁剪本地圖片,接下來的問題就是將裁剪過後的base64圖片上傳至後臺。
1:去掉base64編碼的頭部 如:"data:image/jpeg;base64," 如果不去,轉換的圖片不可以檢視
2:解碼
3:在tomcat目錄下建立picture資料夾儲存圖片
4:判斷檔案目錄是否存在
5:根據系統的不同獲取檔案路徑的分隔符
6:輸出檔案路徑
package com.debo.cropper;
import java.io.FileOutputStream;
import java.text.SimpleDateFormat;
import java.util.Base64;
import java.util.Base64.Decoder;
import java.util.Date;
import javax.servlet.http.HttpServletRequest;
import org.apache.commons.lang.RandomStringUtils;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.ResponseBody;
@Controller
@RequestMapping("upload")
public class Cropper {
/**
* 註釋的程式碼可以忽略
* @throws
*/
@RequestMapping(method = RequestMethod.POST)
@ResponseBody
public String cropper(@RequestParam("file") String file,
HttpServletRequest request) throws Exception {
Decoder decoder = Base64.getDecoder();
// 去掉base64編碼的頭部 如:"data:image/jpeg;base64," 如果不去,轉換的圖片不可以檢視
file = file.substring(23);
//解碼
byte[] imgByte = decoder.decode(file);
/*//在tomcat目錄下建立picture資料夾儲存圖片
String path = request.getSession().getServletContext()
.getRealPath("");
String contextPath = request.getContextPath();
path = path.replace(contextPath.substring(1), "") + "picture";
File dir = new File(path);
if (!dir.exists()) {// 判斷檔案目錄是否存在
dir.mkdirs();
}
//因為windows和linux路徑不同,window:D:\dir linux:opt/java
//System.getProperty("file.separator")能根據系統的不同獲取檔案路徑的分隔符
String fileName = getFileName();
path = path + System.getProperty("file.separator") + fileName;
*/
try {
FileOutputStream out = new FileOutputStream("D:/1.jpg"); // 輸出檔案路徑
out.write(imgByte);
out.close();
} catch (Exception e) {
e.printStackTrace();
}
return "success";
/*String url = request.getScheme() + "://" + request.getServerName()
+ ":" + request.getServerPort() + "/picture/" + fileName;
return url; */
}
/**
* 建立檔名稱 內容:時間戳+隨機數
*
* @param @return
* @throws
*/
private String getFileName() {
SimpleDateFormat sdf = new SimpleDateFormat("yyyyMMddHHmmss");
String timeStr = sdf.format(new Date());
String str = RandomStringUtils.random(5,
"abcdefghijklmnopqrstuvwxyz1234567890");
String name = timeStr + str + ".jpg";
return name;
}
}
RandomStringUtils需要匯入依賴
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
<version>2.6</version>
</dependency>
原文作者:祈澈姑娘
技術部落格:https://www.jianshu.com/u/05f416aefbe190後前端妹子,愛程式設計,愛運營,愛折騰。
關注「程式設計微刊」公眾號 ,在微信後臺回覆「領取資源」,獲取IT資源200G乾貨大全。公眾號回覆“1”,拉你程式序員技術討論群