Znalazłem kilka różnych postów, a nawet pytań dotyczących stackoverflow odpowiadających na to pytanie. Zasadniczo wdrażam to samo, co ten post .
Oto mój problem. Kiedy przesyłam zdjęcie, muszę również przesłać resztę formularza. Oto mój html:
<form id="uploadImageForm" enctype="multipart/form-data">
<input name="imagefile[]" type="file" id="takePictureField" accept="image/*" onchange="uploadPhotos(\'#{imageUploadUrl}\')" />
<input id="name" value="#{name}" />
... a few more inputs ...
</form>
Wcześniej nie musiałem zmieniać rozmiaru obrazu, więc mój javascript wyglądał tak:
window.uploadPhotos = function(url){
var data = new FormData($("form[id*='uploadImageForm']")[0]);
$.ajax({
url: url,
data: data,
cache: false,
contentType: false,
processData: false,
type: 'POST',
success: function(data){
... handle error...
}
}
});
};
To wszystko działało świetnie ... teraz, gdy muszę zmienić rozmiar obrazów ... jak mogę zastąpić obraz w formularzu, aby opublikowany został zmieniony rozmiar, a nie przesłany obraz?
window.uploadPhotos = function(url){
var resizedImage;
// Read in file
var file = event.target.files[0];
// Ensure it's an image
if(file.type.match(/image.*/)) {
console.log('An image has been loaded');
// Load the image
var reader = new FileReader();
reader.onload = function (readerEvent) {
var image = new Image();
image.onload = function (imageEvent) {
// Resize the image
var canvas = document.createElement('canvas'),
max_size = 1200,
width = image.width,
height = image.height;
if (width > height) {
if (width > max_size) {
height *= max_size / width;
width = max_size;
}
} else {
if (height > max_size) {
width *= max_size / height;
height = max_size;
}
}
canvas.width = width;
canvas.height = height;
canvas.getContext('2d').drawImage(image, 0, 0, width, height);
resizedImage = canvas.toDataURL('image/jpeg');
}
image.src = readerEvent.target.result;
}
reader.readAsDataURL(file);
}
// TODO: Need some logic here to switch out which photo is being posted...
var data = new FormData($("form[id*='uploadImageForm']")[0]);
$.ajax({
url: url,
data: data,
cache: false,
contentType: false,
processData: false,
type: 'POST',
success: function(data){
... handle error...
}
}
});
};
Myślałem o przeniesieniu pliku wejściowego z formularza i posiadaniu ukrytego wejścia w formularzu, dla którego ustawiłem wartość na wartość obrazu o zmienionym rozmiarze ... Ale zastanawiam się, czy mogę po prostu zastąpić obraz, który jest już w formie.
BufferedImage dest = src.getSubimage(rect.x, rect.y, rect.width, rect.height);