473,405 Members | 2,300 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,405 software developers and data experts.

Resizing images per screen resolution

I have a 30X16 cells table in my html page. Table height and width are
set to 100%. I have set size of every cell inside the table to 24
pixel.

When I open the html page in maximize state in either resolution 800 X
600 or 1152 X 864 it takes up the entire explorer size.

In screen resolution 800 X 600, if I insert a pictures of 24 X 24 pixel
in the cells it takes up the entire cell size (ideally it should as the
cell size is also 24 X 24 pixel) and If I change the screen resolution
to 1152 X 864 the picture is there but it does not take up the entire
cell size. Little bit of surrounding area is visible.

I know the reason, when you change the screen resolution, it has more
pixels to display hence the problem.

What I want to know is, if I use pictures of 50 X 50 pixels into those
tiny 24 X 24 pixel cells, can id grow and shrink automatically
detecting the screen resolution?

Note:
1. I want each cell size to be 24 X 24 pixels. I Cannot modify this
requirement.
2. I want the table height and width set to 100%. Cannot modify this
either.
Is there any way out? I hope I have explained my problem properly. I
think it is not possible.

In that case if I remove the 100% table height width criteria, then on
800 X 600 screen resolution, it will take up the entire browser window
and if I chang the resolution to 1152 X 864, the table will appear in
the center leaving extra space in the background. Right? If yes, how
can I avoid this? I want to take up full explorer area regardless of
the screen resolution.

Is there any way in javascript to detect the system's screen resolution
first and accordingly resize the pictures?
For instance If i have pictures of 50 X 50 pixels then,
If screen resolution is 800 X 600, resize it to 24 X 24
if screen resolution is 1280 X 720, resize it to 32 X 32
if screen resilution is 1152 X 864, resize it to 40 X 70

Apr 7 '06 #1
5 6167
Maxi wrote:
Is there any way in javascript to detect the system's screen resolution
first and accordingly resize the pictures?
For instance If i have pictures of 50 X 50 pixels then,
If screen resolution is 800 X 600, resize it to 24 X 24
if screen resolution is 1280 X 720, resize it to 32 X 32
if screen resilution is 1152 X 864, resize it to 40 X 70


--- Detecting Resolution ---

Moz:
"Width: " + window.innerWidth + " Height: " + window.innerHeight

IE:
"Width: " + document.body.offsetWidth + " Height: " +
document.body.offsetHeight

(This was what I found, doing some searches online, might be a better
way somewhere)

--- Resizeing Image ---

var imgs = document.getElementsByTagName("img");
for (var i = 0;i < imgs.length;i++)
{
imgs.width = NEWWIDTH;
imgs.height = NEWHEIGHT;
}
If you have other images in the page, you can first "grab" the table
and then allt he images in that:

var thetable = document.getElementById("IDFORTABLE");
var imgs = document.getElementsByTagName("img");

Sidenote: Remember that getElementsByTagName returns a HTMLcollection
and not an Array.
--- Triggering Resizing ? ---

window.onresize = FUNCTIONNAME;

function FUNCTIONNAME()
{
GRABSIZE
CHANGESIZE
}
(Sorry for all the psudo code, I was in a hurry)

Apr 7 '06 #2

[on] wrote:
Maxi wrote:
Is there any way in javascript to detect the system's screen resolution
first and accordingly resize the pictures?
For instance If i have pictures of 50 X 50 pixels then,
If screen resolution is 800 X 600, resize it to 24 X 24
if screen resolution is 1280 X 720, resize it to 32 X 32
if screen resilution is 1152 X 864, resize it to 40 X 70


--- Detecting Resolution ---

Moz:
"Width: " + window.innerWidth + " Height: " + window.innerHeight

IE:
"Width: " + document.body.offsetWidth + " Height: " +
document.body.offsetHeight

(This was what I found, doing some searches online, might be a better
way somewhere)

--- Resizeing Image ---

var imgs = document.getElementsByTagName("img");
for (var i = 0;i < imgs.length;i++)
{
imgs.width = NEWWIDTH;
imgs.height = NEWHEIGHT;
}
If you have other images in the page, you can first "grab" the table
and then allt he images in that:

var thetable = document.getElementById("IDFORTABLE");
var imgs = document.getElementsByTagName("img");

Sidenote: Remember that getElementsByTagName returns a HTMLcollection
and not an Array.
--- Triggering Resizing ? ---

window.onresize = FUNCTIONNAME;

function FUNCTIONNAME()
{
GRABSIZE
CHANGESIZE
}
(Sorry for all the psudo code, I was in a hurry)


Thank you for the start. I will take it over from here....... Even I
need little bit of researching before I achieve what I want.

Apr 7 '06 #3
Maxi wrote:
I have a 30X16 cells table in my html page. Table height and width are
set to 100%. I have set size of every cell inside the table to 24
pixel.

When I open the html page in maximize state in either resolution 800 X
600 or 1152 X 864 it takes up the entire explorer size.
No, it does not. You are having the common misconception that the display
resolution would have anything to do with the viewport size, because you
think that all people run their browsers in full screen mode (that is even
more than "full screen" window size; enlightening example for the latter:
<URL:http://dorward.me.uk/tmp/fullscreen.jpeg>).
I know the reason, when you change the screen resolution, it has more
pixels to display hence the problem.
That is not quite correct. With greater display resolution, there is more
space that any window can possibly occupy (up to full screen mode in some
browsers [type F11 in Geckos and IE]), hence more space the viewport of a
window can possibly occupy. However, the same thing happens when the
window is enlarged and the display resolution stays the same. And the
opposite happens with a smaller-than-fullscreen-sized window and the same
display resolution.
What I want to know is, if I use pictures of 50 X 50 pixels into those
tiny 24 X 24 pixel cells, can id grow and shrink automatically
detecting the screen resolution?
You cannot detect the screen resolution, and even if you could, that would
not help you in any way (see the above screenshot). You can detect the
viewport size, but that would not help if client-side script support was
not present.
Note:
1. I want each cell size to be 24 X 24 pixels. I Cannot modify this
requirement.
2. I want the table height and width set to 100%. Cannot modify this
either.


If you stopped misusing tables (there is no tabular data here) and used
floating elements (floats) for each slide instead, you would not have this
problem in the first place.

<URL:http://www.w3.org/TR/CSS/visuren.html#floats>

And certainly you do not want to resize the images according to display
resolution. Think about the effect on image display quality; a Web
browser is not an image manipulation program with built-in sophisticated
methods such as cubic scaling, anti-aliasing etc.
PointedEars
Apr 7 '06 #4
That was really helpful. May be I need to re-think on the design of my
html file.

Thomas 'PointedEars' Lahn wrote:
Maxi wrote:
I have a 30X16 cells table in my html page. Table height and width are
set to 100%. I have set size of every cell inside the table to 24
pixel.

When I open the html page in maximize state in either resolution 800 X
600 or 1152 X 864 it takes up the entire explorer size.


No, it does not. You are having the common misconception that the display
resolution would have anything to do with the viewport size, because you
think that all people run their browsers in full screen mode (that is even
more than "full screen" window size; enlightening example for the latter:
<URL:http://dorward.me.uk/tmp/fullscreen.jpeg>).
I know the reason, when you change the screen resolution, it has more
pixels to display hence the problem.


That is not quite correct. With greater display resolution, there is more
space that any window can possibly occupy (up to full screen mode in some
browsers [type F11 in Geckos and IE]), hence more space the viewport of a
window can possibly occupy. However, the same thing happens when the
window is enlarged and the display resolution stays the same. And the
opposite happens with a smaller-than-fullscreen-sized window and the same
display resolution.
What I want to know is, if I use pictures of 50 X 50 pixels into those
tiny 24 X 24 pixel cells, can id grow and shrink automatically
detecting the screen resolution?


You cannot detect the screen resolution, and even if you could, that would
not help you in any way (see the above screenshot). You can detect the
viewport size, but that would not help if client-side script support was
not present.
Note:
1. I want each cell size to be 24 X 24 pixels. I Cannot modify this
requirement.
2. I want the table height and width set to 100%. Cannot modify this
either.


If you stopped misusing tables (there is no tabular data here) and used
floating elements (floats) for each slide instead, you would not have this
problem in the first place.

<URL:http://www.w3.org/TR/CSS/visuren.html#floats>

And certainly you do not want to resize the images according to display
resolution. Think about the effect on image display quality; a Web
browser is not an image manipulation program with built-in sophisticated
methods such as cubic scaling, anti-aliasing etc.
PointedEars


Apr 7 '06 #5
Maxi said the following on 4/7/2006 9:32 AM:
[on] wrote:
Maxi wrote:
Is there any way in javascript to detect the system's screen resolution
first and accordingly resize the pictures?

No need for javascript to do it.
Thank you for the start. I will take it over from here....... Even I
need little bit of researching before I achieve what I want.


<img style="width:100%;height:100%">

Try it.

--
Randy
comp.lang.javascript FAQ - http://jibbering.com/faq & newsgroup weekly
Javascript Best Practices - http://www.JavascriptToolbox.com/bestpractices/
Apr 7 '06 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: Nick D. | last post by:
Hi All! I hope there's someone that might be able to help me with this...I'm a designer, not a developer, so i hope this isn't TOO basic. Basically, I have a topbar that's a simple JPG image that...
10
by: riki | last post by:
Hi, i have a big problem...i'm using one jscript for resizing of all of my pics in popUp...in main html i'm having many little pics and clicking on them they open in popUp and resize to larger...
11
by: Jozef | last post by:
I have some old code that I use from the Access 95 Developers handbook. The code works very well, with the exception that it doesn't seem to recognize wide screens, and sizes tab controls so that...
6
by: neverstill | last post by:
hi- So I wrote this nice little page that will allow the managers to add images to the products table. Without too many details to confuse everything, basically what I'm doing is: getting an...
7
by: mukeshgupta.WD | last post by:
Hi, i have seen in many web sites, the size of pages are automatically resized according to screen resolution. generally we create web layout for 800x600 but if we view it in1024x768 then the...
14
by: Seige | last post by:
Ever had headache when you can't resize the background width using CSS: body{ background: url(/images/bg.jpg) ; background-width: 800px; } It won't work, would it? Of course not, it's not even...
1
by: belowcost1960 | last post by:
I have this page that is a gallery of images that runs a slide show. http://www.dannyvuart.com/gallery/gallery_new3.html Anyone know how or where to write a script that will 1) resize each...
10
by: mishrarajesh44 | last post by:
hii all, I am facing a problem currently.. i have a script for image uploading and resizing.. the image uploading takes place properly for every size images.. but, the resizing works for...
5
Ali Rizwan
by: Ali Rizwan | last post by:
Hi all, I was busy for a long time for a project. Now my question is that how can i resize any image like Jpg or bmp to the size of my form or screen resolution for example if screen resolution is...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.