for picture upload i wrote following html code :
<input type="file" id="upload" class="im" onchange="fileSelectHandlerProfile('defaultProfile','true')" style="cursor:pointer"/>
when we done with select image,
this code will be fired :
function fileSelectHandlerProfile(title, defalutProfile) {
var oFile;
oFile = $('#thumbUploadProfile')[0].files[0];
var rFilter = /^(image\/jpeg|image\/png|image\/gif|image\/bmp|image\/jpg|image\/pjpeg)$/i;
if (!rFilter.test(oFile.type)) {
$('.errorProfile').html('Please select a valid image file (jpg and png are allowed)').show();
}
}
i want to check the oFile width and height, how can it is possible like oFile.type?
for picture upload i wrote following html code :
<input type="file" id="upload" class="im" onchange="fileSelectHandlerProfile('defaultProfile','true')" style="cursor:pointer"/>
when we done with select image,
this code will be fired :
function fileSelectHandlerProfile(title, defalutProfile) {
var oFile;
oFile = $('#thumbUploadProfile')[0].files[0];
var rFilter = /^(image\/jpeg|image\/png|image\/gif|image\/bmp|image\/jpg|image\/pjpeg)$/i;
if (!rFilter.test(oFile.type)) {
$('.errorProfile').html('Please select a valid image file (jpg and png are allowed)').show();
}
}
i want to check the oFile width and height, how can it is possible like oFile.type?
Share Improve this question edited Oct 17, 2014 at 15:58 gp. 8,2253 gold badges42 silver badges41 bronze badges asked Oct 17, 2014 at 15:48 user3255765user3255765 871 gold badge2 silver badges6 bronze badges 1- As Merlin answered you can validate and also integrate it with JQuery form validations try this sgeek/validate-image-dimension-using-jquery – Gopal Joshi Commented May 11, 2017 at 16:42
4 Answers
Reset to default 5A solutions is to load it clienside and check the height and width.
function fileSelectHandlerProfile(title, defalutProfile) {
var oFile;
oFile = $('#thumbUploadProfile')[0].files[0];
var rFilter = /^(image\/jpeg|image\/png|image\/gif|image\/bmp|image\/jpg|image\/pjpeg)$/i;
if (!rFilter.test(oFile.type)) {
$('.errorProfile').html('Please select a valid image file (jpg and png are allowed)').show();
}
var picReader = new FileReader();
picReader.addEventListener("load", function (event) {
var imageObj = new Image();
imageObj.src = event.target.result;
imageObj.onload = function () {
//TEST IMAGE SIZE
if (imageObj.height < 100 || imageObj.width < 100) {
$('.errorProfile').html('Please select an image with correct dimensions').show();
}
};
});
//Read the image
picReader.readAsDataURL(oFile);
}
var width;
var height;
var oFile;
oFile = $('#thumbUploadProfile')[0].files[0];
var reader = new FileReader();
reader.onload = function(e){
var image = new Image();
image.onload = function(){
width = img.width;
height = img.height;
}
image.src = e.target.result;
};
reader.readAsDataURL(oFile);
You can do it in 2 steps:
- Read the image file content as data url using html5 file api:
var reader = new FileReader();
reader.onloadend = function () {
//var dataUrl = reader.result;
//code as per step 2 here...
}
reader.readAsDataURL(oFile);
//ref: https://developer.mozilla/en-US/docs/Web/API/FileReader.readAsDataURL
Now read the image size by creating
Image
object with the dataUrl as src.Details: JS - get image width and height from the base64 code
The FileReader API allows you to use FileReader.readAsDataURL
to read the file as a data:
url. Use that url as the src
attribute of a <img />
tag and read the width
and height
attribute of that image.