我正在開發Cordova移動應用程序。 我想添加個人資料圖片,所以我必須添加裁剪工具。Html圖像裁剪+顯示圖像代碼
我創造這就是我的基本想法的例子
function readURL(input) {
if (input.files && input.files[0]) {
var reader = new FileReader();
reader.onload = function(e) {
$('#vorschau').attr('src', e.target.result);
$('#bild_code').html(e.target.result);
}
reader.readAsDataURL(input.files[0]);
}
}
$("#imgInp").change(function() {
readURL(this);
});
$('#box').draggable({
containment: '#main'
});
body {
margin: 0px;
padding: 0px;
}
#main {
position: absolute;
top: 30px;
min-height: 100px;
min-width: 100px;
}
#box {
position: absolute;
top: 0px;
left: 0px;
width: 100px;
height: 100px;
background: black;
opacity: 0.5;
}
#bild_code {
position: absolute;
top: 400px;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="//code.jquery.com/ui/1.11.4/jquery-ui.js"></script>
<div id="container">
<input type='file' id="imgInp" />
<div id="main">
<img id="vorschau" src="#" alt="your image" />
<div id="box"></div>
</div>
<div id="bild_code"></div>
</div>
。當你選擇一張圖片時,你會看到後面要上傳的代碼,但那不是問題。 當你移動黑匣子,然後例如點擊一個代碼應該改變的按鈕,這樣我就可以上傳圖像代碼。 有沒有簡單的解決方案?
希望能對你有所幫助;)
感謝,這是該解決方案從畫布獲得裁剪圖像的源 –