I plan to use it with javascript to crop an image to fit the entire window.
I appreciate all help you can provide.
Edit: I'll be using a 3rd part component that only accepts the aspect ratio in the format like: 4:3, 16:9
|
I plan to use it with javascript to crop an image to fit the entire window. I appreciate all help you can provide. Edit: I'll be using a 3rd part component that only accepts the aspect ratio in the format like: 4:3, 16:9 | |||||||||||
feedback
|
|
Many of the answers to date give you the ratio, but not a usable aspect ratio, which is generally What you need to do is find the greatest common divisor (GCD) and divide both values by that. The GCD is the highest number that evenly divides both numbers. So the GCD for 6 and 10 is 2, the GCD for 44 and 99 is 11. For example, a 1024x768 monitor has a GCD of 256. When you divide both values by that you get 4x3 or 4:3. A (recursive) GCD algorithm:
In C:
And here's some complete HTML/Javascript which shows one way to detect the screen size and calculate the aspect ratio from that. This works in FF3, I'm unsure what support other browsers have for
It outputs (on my weird wide-screen monitor):
Others that I tested this on:
I wish I had that last one at home but, no, it's a work machine unfortunately. What you do if you find out the aspect ratio is not supported by your graphic resize tool is another matter. I suspect the best bet there would be to add letter-boxing lines (like the ones you get at the top and bottom of your old TV when you're watching a wide-screen movie on it). I'd add them at the top/bottom or the sides (whichever one results in the least number of letter-boxing lines) until the image meets the requirements. One thing you may want to consider is the quality of a picture that's been changed from 16:9 to 5:4 - I still remember the incredibly tall, thin cowboys I used to watch in my youth on television before letter-boxing was introduced. You may be better off having one different image per aspect ratio and just resize the correct one for the actual screen dimensions before sending it down the wire. | |||||||||||
feedback
|
if that is what you're after. You can then multiply it by one of the dimensions of the target space to find out the other (that maintains the ratio) e.g.
| |||
|
feedback
|
|
I guess you want to decide which of 4:3 and 16:9 is the best fit.
| |||||||
feedback
|
|
This algorithm in Python gets you part of the way there. Tell me what happens if the windows is a funny size. Maybe what you should have is a list of all acceptable ratios (to the 3rd party component). Then, find the closest match to your window and return that ratio from the list. | ||||
|
feedback
|
|
As an alternative solution to the GCD searching, I suggest you to check against a set of standard values. You can find a list on Wikipedia. | |||
|
feedback
|
|
Im assuming your talking about video here, in which case you may also need to worry about pixel aspect ratio of the source video. For example. PAL DV comes in a resolution of 720x576. Which would look like its 4:3. Now depending on the Pixel aspect ratio (PAR) the screen ratio can be either 4:3 or 16:9. For more info have a look here http://en.wikipedia.org/wiki/Pixel_aspect_ratio You can get Square pixel Aspect Ratio, and a lot of web video is that, but you may want to watch out of the other cases. Hope this helps Mark | |||
|
feedback
|
? | |||
feedback
|
|
I think this does what you are asking for: webdeveloper.com - decimal to fraction Width/height gets you a decimal, converted to a fraction with ":" in place of '/' gives you a "ratio". | |||
|
feedback
|
|
bit of a strange way to do this but use the resolution as the aspect. E.G. 1024:768 or you can try
| ||||
|
feedback
|