Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

background image size iphone

Tags:

iphone

Normal background image is 320x480 pixels. and for retina is 640x960 pixels.

Now i have to put my background image and i have status bar(20) and navigation bar (44).

So i have to reduce 64(20+44) from 480(normal) or from 960(retina)?

  1. if i reduce 64 from normal then normal image will be 320x416 pixels and retina will be 640x832 pixels.
  2. if i reduce 64 from retina then normal will be 320x448 and retina will be 640x896 .

It is confusing me.. this 64(20+44) i reduce from which image type because other one will be exactly half or double of it.

like image 425
Mann Avatar asked Sep 15 '11 13:09

Mann


1 Answers

Reduce from the normal size.

64px = height to remove from normal display.

128px = height to remove from the retina.

Don't forget that in the retina display the status bar and nav bar will also be 2x the height :)

like image 55
deanWombourne Avatar answered Oct 13 '22 17:10

deanWombourne