Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8250537
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T23:55:36+00:00 2026-06-07T23:55:36+00:00

I have a script that uses this function to resize images onLoad and onResize:

  • 0

I have a script that uses this function to resize images onLoad and onResize:

/**
 * Calculates the display width of an image depending on its display height when it is resized.
 * @param displayHeight the resized height of the image
 * @param originalHeight the original height of the image
 * @param originalWidth the original width of the image
 * @return the display width
 */
function getDisplayWidth(displayHeight, originalHeight, originalWidth){
    var ratio = originalHeight/displayHeight,
        res = Math.round(originalWidth/ratio) || 1000;
    return res;
}

.. but I do NOT want to the image height to exceed 800px, infact it can even be a fixed at 800×530px size. I tried to return a fixed value to res but it doesn’t seem to work.

Thanks!

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-07T23:55:38+00:00Added an answer on June 7, 2026 at 11:55 pm

    You just need to add an if statement to your function…

    /**
     * Calculates the display width of an image depending on its display height when it is resized.
     * @param displayHeight the resized height of the image
     * @param originalHeight the original height of the image
     * @param originalWidth the original width of the image
     * @return the display width
     */
    function getDisplayWidth(displayHeight, originalHeight, originalWidth){
        if (displayHeight > 800) displayHeight = 800;
        var ratio = originalHeight/displayHeight,
            res = Math.round(originalWidth/ratio) || 1000;
        return res;
    }
    

    When you set the width it will automatically set the height to the correct value of the width/height ratio. You can also get the height by passing a variable to getDisplayWidth and then when the function returns that variable will have the height, as defined by the max height condition.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a script that registers users based on their user input. This uses
I have a script that uses a simple while loop to display a progress
I have a function in PHP that resizes images into a thumbnail, my image
I have a script that uses mcrypt_decrypt() function, but I get the following error
I have a script that uses PHP mail() function to send emails: mail(me@mydomain.com, Subject,
I have a script that uses a ton of redirects. About half way through
I have a script that uses BeautifulSoup that I want to make into a
I have a script that uses Parallel::ForkManager . However, the wait_all_children() process takes incredibly
I have a nodejs script that uses phantomjs-node to scrape a webpage. It works
I have a Perl script that uses WWW::Mechanize to read from a file and

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.