我有文件输入按钮(输入类型=文件)。让我说我选择图像。我想从输入中获取此图像,修改它,然后在同一文件输入中插入此修改后的图像。
答案 0 :(得分:0)
HTML
<form method="post" action="upload-page.php" enctype="multipart/form-data">
<label for="filesToUpload"> Select all photo files you need.</label>
<br>
<input name="filesToUpload[]" id="filesToUpload" type="file" multiple="" />
<br><br>
</form>
jQuery(我也会使用an image lib)
var input = $( "input:file");
Caman(input, function () {
this.brightness(10);
this.contrast(30);
this.sepia(60);
this.saturation(-30);
this.render();
});