Reputation: 1659
Title gore sorry, it's hard to describe.
I got an image, which is let's say, 1000px
in height. On that image i know the dimensions and position of a box, which is 600px
tall. The box inside scales proportionally to the height of the image. I need to figure out which height i need to set the image to in order to get the height of the box to match 600px
. I can only set the height of the image.
Known variables
boxHeight = 800
imageHeight = 1000
desiredBoxHeight = 600
requiredImageHeight = ??
Here what i mean: Left, the current situation, right the desired situation. Whats the math in order to figure out the height of the image in the right situation?
I've tried and tried, but i'm not a math person, so i'm at wit's end.
Upvotes: 0
Views: 24
Reputation: 5805
If I understand correctly; The image scales proportionally to the size of the box. The box goes from 800 to 600 pixels. So the image goes from 1000 to 1000 * (600/800) = 750 pixels.
So that's:
requiredImageHeight = imageHeight * (desiredBoxHeight / boxHeight)
Upvotes: 1