Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am developing a database driven web app. and there is a cell that users can enter any image url or string as input.
is there a function that, image url / string seperation and if it is image, checks for existence.
I need to do that, if a user entered an image url then image is going to show into app (if exists), otherwise if user entered a string (message) then message is going to placed into app.

Just for demonstration;

function check_imageornot(data){
    ...........
    if -> image && exist -> return 'image_ok';
    if -> image && not_exist -> return 'image_no';
    if -> string -> return 'string';
    }
}

NOTE: This function will be put into .js file so Javascript/jQuery way is needed (can be regex way in JS/jQuery too...)

share|improve this question
this is Javascript? – Paul Nikonowicz Mar 1 '12 at 16:06
@Paul Nikonowicz, yes i need a javascript way. Function is written for only idea that i need. – Alper Mar 1 '12 at 16:08

3 Answers

up vote 2 down vote accepted

You can't tell if a file is an image just by looking at its name (or its URL). If you're talking about a local file, you could use HTML5 file manipulation tools to open the file and sniff its contents. If the URL could be for a file anywhere on the Internet, however, you'll have to send the URL to your server and have it figure out what it is.

edit — @GGG has an interesting idea in a comment.

share|improve this answer
Couldn't you load offsite images in an Image element and determine whether they're valid or not with onload/onerror? – Dagg Nabbit Mar 1 '12 at 16:15
@GGG interesting idea ... that might work! I don't know if it's possible to rely on all browsers to trigger an "error" event however. It might work though. – Pointy Mar 1 '12 at 16:37
actually, i get the answer on css-tricks.com/snippets/jquery/get-an-images-native-width and i am geeting width/height of image to check existance. But can you advice any way for is a string image url or not? i mean, if string is like "abc.com/img.jpg"; (with/without http-www) return "image" otherwise return "string". Thanks – Alper Mar 1 '12 at 21:21
Well you could do something like that if you want, but there's nothing that ensures that everything that ends in ".jpg" is an image, or that everything that doesn't is not an image. A JPEG of a rose by any other name would smell as sweet. – Pointy Mar 1 '12 at 23:06

I solved my problem with below function;

function is_image_valid(src) {
// Create new offscreen image to test
var image_new = new Image();
image_new.src = src;
// Get accurate measurements from that.
if ((image_new.width>0)&&(image_new.height>0)){
    return true;
} else {
    return false;
}
}

function is_image_ornot(input) {
if (/(jpg|gif|png)$/.test(input)){ // image url as input
    if (is_image_valid(input)){ // image found
        return 'image_ok';
    } else { // image couldnt be found
        return 'image_not';
    }
} else { // string as input
    return 'string';
}
};

/* usage */ is_image_ornot(variable)

BUT, as Pointy described not all jpg ended string means that it is an image... This will work for me because this project will be used inside of a company and all control in my hands.

I put these code here to only give an idea to others...

share|improve this answer

Just a small modification:

if (/(jpg|gif|png|JPG|GIF|PNG|JPEG|jpeg)$/.test(input)){ // image url as input

that way it will understand different ways of seeing the file extension.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.