Questions tagged [retina-display]

Retina display is a trademark used by Apple for displays claimed to have pixel density so high that the eye would not be able to notice pixelation. The term is used for several models of the iPod touch, iPhone, iPad, and MacBook Pro.

Retina Display is a brand name used by Apple for liquid crystal displays that have a pixel density high enough that the human eye is unable to discern individual pixels at a typical viewing distance. The term is used for several Apple products, including the iPhone, iPod Touch, iPad, MacBook Pro, iPad Mini, and iPad Air. Because the typical viewing distance is different, depending on each device's use, the pixels per inch claimed to be of Retina quality can differ, depending on the size of the display, with higher PPI for smaller displays and lower PPI for larger displays: 326 PPI for the smallest devices (iPhone, iPod Touch, and iPad Mini with Retina display), 264 PPI for mid-sized devices (iPad third generation and onwards, including iPad Air), and 220 PPI for larger devices (MacBook Pro). While not currently common, many other manufacturers' displays have similar PPI density. When an Apple product has a Retina Display, each user interface widget is doubled in width and height to compensate for the smaller pixels. Apple calls this mode HiDPI mode. Apple has applied to register the term "Retina" as a trademark in regard to computers and mobile devices with the United States Patent and Trademark Office, Canadian Intellectual Property Office, and in Jamaica.On November 27, 2012 the US Patent and Trademark office approved Apple's application and "Retina" is now a registered trademark for computer equipment.

Source: Wikipedia (Retina Display)

1188 questions
0
votes
1 answer

Retina images in PHP

Let's suppose I'm uploading a 1600x1200px picture to a webserver and I want to "build" the retina version of the image itself. In code: $imageRetina = renameForRetina($originalImage); $imageNormal = halfResize($originalImage); Is ok to keep the…
napolux
  • 15,574
  • 9
  • 51
  • 70
0
votes
2 answers

Uncommon png file iOS display

In this post, i was wondering why my png files were badly displayed on retina displays. I finaly found that the problem came from the PNG file itself: when I open it and save it again with photoshop or something else, the problem disapear. As this…
Martin
  • 11,881
  • 6
  • 64
  • 110
0
votes
2 answers

Image memory issues in iphone retina display

I am developing a game for a company. Right now we are coming across a problem. Our game is made for the iphone and ipad. We have both regular images and @2x images. Our game works perfectly fine on iphone 3gs and all the ipad versions. But our game…
0
votes
3 answers

what rect size for retina display?

I just wanted to know if my image has x*y dimensions. When retina display devices show that image created with a CGRectMake(0,0,x,y), would that be a pixelated image? Should the correct size have been CGRectMake(0,0,x/2,y/2)? How can I tell the…
Ted
  • 3,805
  • 14
  • 56
  • 98
0
votes
0 answers

Responsive cropping of a retina (hiDPI) image

I've got an image of a map on a web page. Using CSS, the map image is automatically cropped by the browser. The goal is that the map is always at 100% scale, and is centred on the location in question. The idea being that the map will always fill…
Mike
  • 33
  • 1
  • 5
0
votes
1 answer

Retina iPad Simulator display issue?

I'm making a retina iPad app. When I test with iPad simulator I get a nice display of my icons and buttons etc... But when I switch to the retina simulator I get big buttons and images... Is that normal? Unfortunately I haven't a real iPad to test…
hafedh
  • 539
  • 1
  • 9
  • 26
0
votes
1 answer

iOS: Require Retina Display in plist

This is an odd request, but I would like to be able to require devices to have a retina display in order to build an application. Is there a key and value I can add to my plist to add that build requirement?
RileyE
  • 10,874
  • 13
  • 63
  • 106
0
votes
0 answers

Cocos2D: hd files not recognized for TMX map

I'm having issues with -hd suffixed files in Cocos2d. My SD tilesize is 52x52 with a map that's 6 wide x 9 high, and the HD tilesize is 104x104. Everything's resized appropriately, and I have both SD and HD versions of both my TMX map and my…
Tinstar
  • 175
  • 12
0
votes
0 answers

Are lightbox type scripts redundant with retina screens?

Is an image displaying in a lightbox script (e.g. prettyPhoto, lightbox, thickbox, etc) affected by high pixel ratio devices? For example, if I had an 800px wide image up in a lightbox, will it be shown at 800 CSS pixels or 800 actual pixels? To…
AlexKempton
  • 1,648
  • 15
  • 28
0
votes
1 answer

Problems with @2x images for IOS5 and Xcode 4.3

I've been looking for a couple of hours for answers for this problem on both Google and Stackoverflow, and none of the suggestions worked so far, so maybe one of you can tell me what's the problem. Here's exactly what I'm doing, step by…
Breno Gazzola
  • 2,092
  • 1
  • 16
  • 36
0
votes
3 answers

Write text on image in objective-c iPhone, Font size of simulator different from on iPhone itself

I'm having something really weird going, I'm adding caption to an image and everything works fine on simulator but on the device itself the font is really small... I have a problem when using this code : -(UIImage*) drawTextOnPic:(NSString*)…
Idan
  • 9,880
  • 10
  • 47
  • 76
0
votes
1 answer

How to know if the Mac has retina?

I have this code for changing the image of a button: - (void)mouseEntered:(NSEvent *)event { [self setImage:[NSImage imageNamed:@"FloatingButton_hover"]]; } - (void)mouseExited:(NSEvent *)event { [self setImage:[NSImage…
Pedro Vieira
  • 3,330
  • 3
  • 41
  • 76
0
votes
3 answers

What is the name of the 144x144 app icon for iPhone?

I am making an iPhone game. I have all the required app sizes except the one for the Retina iPad. I figured the size of the icon for that needs to be 144x144. But I don't know what to name it! I tried Icon-144.png(similar to Icon-72.png) but when I…
AbhinavVinay
  • 303
  • 6
  • 18
0
votes
1 answer

Can't create Retina images with CGContextDrawImage

I'm creating an image by combining two other images, using CGContext. Even if I have the @2x images, I can't succeed to create an retina image. Here's my code. Could you please help ? -(UIImage*)makePinImageWithImage:(UIImage*)icon { UIImage * pin =…
Martin
  • 11,881
  • 6
  • 64
  • 110
0
votes
1 answer

CCSprite does not display on iPad+Retina

I have another weird problem which I have not been able to solve in reasonable time. My app works well on iPhone 4S and iPod 4-th with and without retina enabled. It also works well on iPad3 without retina. But when iPad has retina enabled,…
Tõnu Samuel
  • 2,877
  • 2
  • 20
  • 30