This question cross-posted from Meta.AskDifferent by request of bmike ♦.

For users with the new MacBook Pro with retina display, or the latest iOS devices (or even other platforms with high-DPI screens), screenshots have their dimensions doubled. For example, if I take a screenshot of a window, this is what I get:

retina screenshot, not resized

As you can see, when the image is displayed normally, it's too big.

The best way to display these is to use

<img src="[url]" width="[half of image width]">

Which produces this:

On a retina display, this is rendered at native resolution; on a non-retina display, it's appropriately downscaled so that it remains the correct size.

Can we get a checkbox on the image upload dialog that does the hard work for us? This would make answering questions a lot easier without having to manually check the image width, divide by 2, and type in the HTML.

Something like this:

Or perhaps this, which would not divide by 2, but simply produce something of the form <img src="..." width="...">:

share|improve this question
3  
Why does this need cross-posted? This feature would basically only be relevant to users using a MacBook Pro, so the user-base this would affect is basically within the AskDifferent population. I don't see this being useful anywhere else on the network. – animuson Jan 2 at 2:40
7  
MacBook Pro users don't restrict themselves to posting only on AskDifferent! – jtbandes Jan 2 at 2:51
3  
@animuson: Some of us who use other sites also have MacBook Pros? For example, there's over a hundred thousand questions tagged ios on SO -- guaranteed that most of those people are using Macs. – Josh Caswell Jan 2 at 2:51
3  
And? We're supposed to add random features to make the lives of only a percentage of Stack Exchange users slightly easier? What if some other computer later on uses 3x? Do we modify it to allow users to select how much they want it scaled down? Maybe we can allow users to rotate it too so they can take landscape pictures with their phone and upload them easier? Or crop the image so they can easily hide their browser tabs? The image uploader isn't an image editing tool, it's an image uploader. – animuson Jan 2 at 2:55
3  
@animuson: The request isn't for image editing, it's for changing the resulting markup. – Josh Caswell Jan 2 at 2:58
7  
Okay, another option would be a checkbox "☑ use HTML for image tag" which could explicitly include the width and allow you to change it. This is still much better for MBP users, but it's also a lot more generic and not specific to the MBP. – jtbandes Jan 2 at 2:59
@jtbandes: That sounds more reasonable. – animuson Jan 2 at 3:02
I'd say once enough sites are seeing 2x uploads from Mac, iPad, iPhone to make this worth a developer's time - this would be an easy fix to reduce the amount of editing and reduce human error in typing <img src="[url]" width="[half of image width]"> especially from a mobile device. Until then it can sit here and on any site meta that wish to show votes of support and be ignored by Stack Exchange. – bmike Jan 2 at 18:23
7  
@animuson This is relevant for mac users as much as for any HDPI display user (Galaxy SIII for example). Users of HDPI displays require this type of support as soon as they need to upload screen captures made on such display. Your reasoning is unfortunately shared by too many people believing in that only Mac OS X and iOS support HDPI displays. With the addition of a better HDPI support in Windows 8 this will become a real issue soon. Better start beta testing with a small percentage of Mac users now rather than ending up with thousands of posts disfigured by HDPI screen captures a bit later. – Coyote Jan 3 at 19:22
2  
@animuson I'm so very glad you're not working for the network. Your attitude is very poor. – jcolebrand Jan 4 at 0:21
@jcolebrand: Not at all, I just don't see the point of a feature that is limited to only a selection of people. I fully support his alternative for the checkbox to display HTML instead of Markdown - it's more generalized and can apply to anyone. I even retracted my downvote. – animuson Jan 4 at 0:28
3  
regardless retracted your downvote, you have to learn to examine who the potential audience is. It's not just iOS6 on iPhone 5 users, it's everyone with increased pixel density which includes a lot of developers and graphics artists (which suddenly means this is an important question for UX, because do they want the full-res or a lower res?) – jcolebrand Jan 4 at 1:28

1 Answer

I think this approach is not optimal as it is limited to only one screen density. HDPI support should not be limited to the *2 pixel density of the retina devices. There are multiple densities already flooding the market like *1.5, *1.75...

A better approach for a proper HDPI support would probably be:

  • By default display only a checkbox to scale the image according to the density of the current display
  • Add a button to enable a finer density selection.
  • When the user choses to display more options, display a fine grained density selector (slider + text input).

Yet another aproach would be to read the DPI fields of the image and automatically scale using html width and height when markdown is used. If the user is not satisfied with this choice give him the option to not rescale accordingly to DPI. Something like adding ![enter image description here][2][ns] would do I guess.


And I really think this feature needs to be implemented now, while there are few HDPI users here, rather than later when we'll have too many HDPI screen captures disfiguring the posts and answers.

When the screen captures are too large they give a clunky aspect to the site. The damage is not only cosmetic as they introduce readability issues; they break the flow of tutorial-like answers and they scale down when they are too large to display in the window.

HDPI is getting more and more support in modern systems, even Windows 8 is getting there. And 2013 being the year intel will try to put more of emphasis on "rich displays" time is running out.

So this is truly the best time to implement this feature.

share|improve this answer
It seems like the better option is to work with the imgur team to see if something can be done to detect pixel density and re-render (images are already re-rendered on upload) to something closer to 72ppi? – jcolebrand Jan 4 at 0:21
1  
@jcolebrand But then we lose data for people who have high-DPI screens. Seems just as bad as or worse than the original problem. – jtbandes Jan 4 at 2:20
@jcolebrand This would indeed rescale the screen captures. While this would "solve" the problem in most situations, details in screen captures which try to show defects or discrepancies happening on HDPI screens would be lost in the downscale. So this approach is definitely not the right one. – Coyote Jan 4 at 7:49
Define please: If you're a graphics artist or someone seriously focused on HDPI, and it's well known that the (stack.??)imgur uploads downscale, wouldn't you host elsewhere? – jcolebrand Jan 4 at 15:32
@jcolebrand: Whaaa? I'm sorry but I can't make much sense of your last comment. I'm not a native english speaker. – Coyote Jan 4 at 17:10

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged