I'm trying to upload/resize an image using Ajax and then display it in the browser instead of saving it to a file. I'm expecting to have an image, instead I got a bunch of gibberish.
Is it doable? Or I can't and need to resort to something else like saving to a file and then take its path? Or perhaps using canvas?
Thanks for your time.
HTML
<form enctype="multipart/form-data" action="file.php" method="Post" id="form">
<input type="file" name="user_image">
<input type="submit" value="Submit" name="submit">
</form>
<div id="blah"></div>
Javascript
//using jquery-form.js
$('#form').on('submit', function(e) {
e.preventDefault();
$(this).ajaxSubmit({
target: '#blah',
success: function(){}
});
});
PHP
$img_width = imagesx($this->image);
$img_height = imagesy($this->image);
$image = imagecreatefromjpeg($_FILE['user_image']['tmp_name']);
$resized_image = imagecreatetruecolor(300, 300);
imagecopyresampled($resized_image, $image, 0, 0, 0, 0, 300, 300, $img_width, $img_height);
header('Content-Type:image/jpeg');
imagejpeg($resized_image);
'<img src="$pathtoimage">';in your php file – Aspiring Aqib Dec 25 '12 at 15:19