JavaScript code for to get the image height and width at the time of upload a image

Discussion in 'JavaScript' started by 143mahi, Jul 2, 2012.

  1. #1
    Hi Friends,
    I want the code for to limit the height and width at the time of image upload(110 X 110) if the image is greater than the 110 X 110 it will return false and show an alert (image is big) or the image sizes can be reduced to 110 X 110 across what the original size.

    Thanks in advance....
     
    143mahi, Jul 2, 2012 IP
  2. Unni krishnan

    Unni krishnan Peon

    Messages:
    237
    Likes Received:
    9
    Best Answers:
    2
    Trophy Points:
    0
    #2
    You can try something like this

    
    var img = new Image();
    img.onload = function() {
      alert(this.width + 'x' + this.height);
    }
    img.src = 'http://www.google.com/intl/en_ALL/images/logo.gif';
    
    Code (markup):
     
    Unni krishnan, Jul 2, 2012 IP
  3. 143mahi

    143mahi Peon

    Messages:
    18
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #3

    Please send me the source code....
     
    143mahi, Jul 2, 2012 IP
  4. 143mahi

    143mahi Peon

    Messages:
    18
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #4
    Please send source code with example..
     
    143mahi, Jul 2, 2012 IP
  5. Unni krishnan

    Unni krishnan Peon

    Messages:
    237
    Likes Received:
    9
    Best Answers:
    2
    Trophy Points:
    0
    #5
    I can provide you the inputs, you need to work on that. Spoon-feeding won't help you in learning anything.

    You can use the html input tag to open a file chooser dialog
    
    <input type="file" id="fChooser">
    
    Code (markup):
    You can get the image using the following
    
    //Firefox
    document.getElementById('fChooser').value
    //other browser
    document.getElementById('fChooser').files.item(0).getAsDataURL();
    
    Code (markup):
    You can then use the logic i have posted previously.
     
    Unni krishnan, Jul 2, 2012 IP
  6. Unni krishnan

    Unni krishnan Peon

    Messages:
    237
    Likes Received:
    9
    Best Answers:
    2
    Trophy Points:
    0
    #6
    Unni krishnan, Jul 2, 2012 IP