在 formdata 中附加创建的图像文件
Append created image file in formdata
我使用 canvas 创建了一个图像。我想在表单数据中附加准确的图像文件,而不是 url。这是我的代码。
<video></video>
<button type="button" onclick="turnOn()">turn on cam</button>
<button type="button" onclick="takeSnapshot()">capture image</button>
<script>
function turnOn() {
document.getElementsByTagName('video')[0].play();
var video = document.querySelector('video')
, canvas;
if (navigator.mediaDevices) {
navigator.mediaDevices.getUserMedia({video: true})
.then(function(stream) {
video.src = window.URL.createObjectURL(stream);
})
.catch(function(error) {
document.body.textContent = 'Could not access the camera. Error: ' + error.name + " " + error.message;
});
}
}
function takeSnapshot() {
var video = document.querySelector('video')
, canvas;
var img = document.querySelector('img') || document.createElement('img');
var context;
var width = video.offsetWidth
, height = video.offsetHeight;
canvas = canvas || document.createElement('canvas');
canvas.width = width;
canvas.height = height;
context = canvas.getContext('2d');
context.drawImage(video, 0, 0, width, height);
img.src = canvas.toDataURL('image/png');
document.body.appendChild(img);
var fd = new FormData(document.forms[0]);
fd.append("image", img);
$.ajax({
type: "POST",
enctype: 'multipart/form-data',
url: "/api/file/upload",
data: fd,
processData: false,
contentType: false,
cache: false,
success: (data) => {
alert("yes");
},
error: function(xhr, status, error) {
alert(xhr.responseText);
}
});
}
</script>
它正在附加 blob 文件“����...”,我希望它附加准确的图像文件。我以前没有用过这个,似乎无法理解其他教程。希望你能帮助我。非常感谢!!!
编辑:
我已经编辑了代码并尝试附加我在 body 上附加的相同图像。但是没用..
您可以尝试将 canvas.toDataURL('image/png')
返回的基于 64 位编码的内联图像转换为使用 document.getElementById("file").files[0]
时从 <input id="file" type="file"></input>
元素获得的同类 File
对象并将其附加到 fd
.
要尝试一下,请更改
var fd = new FormData(document.forms[0]);
fd.append("image", img);
$.ajax({
type: "POST",
enctype: 'multipart/form-data',
url: "/api/file/upload",
data: fd,
processData: false,
contentType: false,
cache: false,
success: (data) = > {
alert("yes");
},
error: function(xhr, status, error) {
alert(xhr.responseText);
}
});
至
fetch(img.src)
.then(res => res.blob())
.then(blob => {
const file = new File([blob], "capture.png", {
type: 'image/png'
});
var fd = new FormData();
fd.append("image", file);
$.ajax({
type: "POST",
enctype: 'multipart/form-data',
url: "/api/file/upload",
data: fd,
processData: false,
contentType: false,
cache: false,
success: (data) => {
alert("yes");
},
error: function(xhr, status, error) {
alert(xhr.responseText);
}
});
});
我使用 canvas 创建了一个图像。我想在表单数据中附加准确的图像文件,而不是 url。这是我的代码。
<video></video>
<button type="button" onclick="turnOn()">turn on cam</button>
<button type="button" onclick="takeSnapshot()">capture image</button>
<script>
function turnOn() {
document.getElementsByTagName('video')[0].play();
var video = document.querySelector('video')
, canvas;
if (navigator.mediaDevices) {
navigator.mediaDevices.getUserMedia({video: true})
.then(function(stream) {
video.src = window.URL.createObjectURL(stream);
})
.catch(function(error) {
document.body.textContent = 'Could not access the camera. Error: ' + error.name + " " + error.message;
});
}
}
function takeSnapshot() {
var video = document.querySelector('video')
, canvas;
var img = document.querySelector('img') || document.createElement('img');
var context;
var width = video.offsetWidth
, height = video.offsetHeight;
canvas = canvas || document.createElement('canvas');
canvas.width = width;
canvas.height = height;
context = canvas.getContext('2d');
context.drawImage(video, 0, 0, width, height);
img.src = canvas.toDataURL('image/png');
document.body.appendChild(img);
var fd = new FormData(document.forms[0]);
fd.append("image", img);
$.ajax({
type: "POST",
enctype: 'multipart/form-data',
url: "/api/file/upload",
data: fd,
processData: false,
contentType: false,
cache: false,
success: (data) => {
alert("yes");
},
error: function(xhr, status, error) {
alert(xhr.responseText);
}
});
}
</script>
它正在附加 blob 文件“����...”,我希望它附加准确的图像文件。我以前没有用过这个,似乎无法理解其他教程。希望你能帮助我。非常感谢!!!
编辑: 我已经编辑了代码并尝试附加我在 body 上附加的相同图像。但是没用..
您可以尝试将 canvas.toDataURL('image/png')
返回的基于 64 位编码的内联图像转换为使用 document.getElementById("file").files[0]
时从 <input id="file" type="file"></input>
元素获得的同类 File
对象并将其附加到 fd
.
要尝试一下,请更改
var fd = new FormData(document.forms[0]);
fd.append("image", img);
$.ajax({
type: "POST",
enctype: 'multipart/form-data',
url: "/api/file/upload",
data: fd,
processData: false,
contentType: false,
cache: false,
success: (data) = > {
alert("yes");
},
error: function(xhr, status, error) {
alert(xhr.responseText);
}
});
至
fetch(img.src)
.then(res => res.blob())
.then(blob => {
const file = new File([blob], "capture.png", {
type: 'image/png'
});
var fd = new FormData();
fd.append("image", file);
$.ajax({
type: "POST",
enctype: 'multipart/form-data',
url: "/api/file/upload",
data: fd,
processData: false,
contentType: false,
cache: false,
success: (data) => {
alert("yes");
},
error: function(xhr, status, error) {
alert(xhr.responseText);
}
});
});