Enable Large Images on iPad/iPod/iPhone
iOS scales down large images automatically [Safari Developer Library].To avoid that behavior you can either choose smaller images (see defusion.org for aspect ratios) or you can use progressive jpges.
These can easily be created / converted by using jpegtran:
jpegtran -copy none -progressive -optimize in.jpg > out.jpg

