I am trying to calculate image height & width based on screen size.. I am getting 5'x 7' dimension image from back end , in order to convert pixels multiplying by 72 i have 360 X 504 dimension image. For 360 X 504 , my dynamic transparent rectangular area will appear at (1.223') x (1.179') i.e, 88.05 x 84.88. Now for screen size 320 x 480 i want to calculate my dynamic rectangular area's height & width.. For this i use following calculation :
For height :
new height = (84.88/504)*480 = 80.83
where 84.88 - height of rectangular image , 504 - height of screen size , 480 - height of new screen size.
Same way for Width :
new width= (88.05/360)*320 = 78.26
Is this the way to calculate image size when Screen size increases or decreases?I need to place my dynamic image exactly over that Rectangular area (Brownish area)of Main Background image..
please let me know if any further details needed.
In Short :
I will get image x,y position & height,width for 360X504.. Now i need to calculate x,y & height,width for 320x480
