Questions tagged [resolution]

Questions about image resolution.

Image resolution is an umbrella term that describes the detail an image holds. Higher resolution means more image detail.

Reference

Wikipedia

2378 questions
9
votes
1 answer

Undo auto resizing for iPhone 5 screen after adding Default-568h@2x.png

I followed the instructions in this answer: https://stackoverflow.com/a/12397309/1084932 to update my app for the new iPhone 5 screen size. Great, worked perfectly! But, I am not quite ready to make this update and wish to roll back to the letterbox…
chazzwozzer
  • 467
  • 6
  • 14
8
votes
2 answers

What is the proper way to handle hi-res web images for hi-res displays (mainly iOS retina displays)?

I have a mobile website taking advantage of jQuery Mobile, however the images, frankly, look like crap on the iPhone 4/4S. I assume the same will go for the "new iPad" when it is available later this week. I know this has something to do with the…
DJ Tarazona
  • 1,769
  • 14
  • 18
8
votes
2 answers

Does Google Maps Android MapView use different resolution tiles for different screen densities?

I am trying to overlay my own custom images on top of a MapView in Android. It is important that my images align correctly with the underlying Google Maps tiles, because it is a map of a university campus whose features must align with Google's…
Bryce Thomas
  • 10,479
  • 26
  • 77
  • 126
8
votes
1 answer

Android Emulator Reports 600x1024 MDPI as XLarge?

I am currently trying to test an existing application for compatibility with the soon to be released Amazon Kindle Fire tablet. They say to set the emulator at 600x1024 and LCD Density to 169…
Josh
  • 1,435
  • 12
  • 19
8
votes
3 answers

WebView is not filling the whole screen of device or emulator

I am developing an android application which loads a web application when started. To achieve the purpose I am using webview control. I want my webview to be displayed full screen so that it will give native feel to the users. I tried all the…
Raju
  • 81
  • 1
  • 2
8
votes
2 answers

ffmpeg extend (not resize) video size by adding box or border

Say I have a video of a peculiar resolution such as 1280x718 and I want to change this to 1280x720. But instead of interpolating 718 pixels vertically to 720, I'd rather just add one line at the top and bottom. So basically, I'm looking for a way…
RocketNuts
  • 9,958
  • 11
  • 47
  • 88
8
votes
5 answers

Log with timestamps that have millisecond accuracy & resolution in Windows C++

I'm aware that for timing accuracy, functions like timeGetTime, timeBeginPeriod, QueryPerformanceCounter etc are great, giving both good resolution & accuracy, but only based on time-since-boot, with no direct link to clock time. However, I don't…
Dave
  • 1,696
  • 4
  • 23
  • 47
8
votes
1 answer

Android apply styles for different screens

I have an application, that need to run in 2 different devices: 600x1024 & 480x800. For these devices, I want to apply different styles (they has different ratio). How I can do it, as both of them has hdpi?, e.g. values-hdpi, values-mdpi have no…
Alex Ivasyuv
  • 8,585
  • 17
  • 72
  • 90
8
votes
4 answers

SpriteKit - Getting the actual size/frame of the visible area on scaled scenes .AspectFill

I have been making a game in SpriteKit and I have come into a problem when supporting all screen sizes. I attempted to resolve the problem by setting all my scenes scale modes to .AspectFill and setting a fixed size for all screens with a width of…
AtomProgrammer
  • 327
  • 2
  • 13
8
votes
1 answer

How to get screen resolution from JavaScript in R Shiny?

I want to get screen resolution from JavaScript, stored in the GetScreenWidth variable on Shiny Server. I tried the reference: Receiving data from .js in server.R…
Robin Chen
  • 103
  • 3
8
votes
1 answer

How to change dynamic video resolution during a call (in WebRTC)

I have been using SimpleWebRTC lib for my project. How to change dynamic remote video resolution during a call (like google hangout when resizing browser) hangout browser resizing will change remote video resolution size (.videoWidth…
dodortus
  • 171
  • 2
  • 7
8
votes
2 answers

How to override device pixel ratio

I made a responsive website which works fine with different screen resolutions. I use three different media queries - from 0 to 640, from 640 to 960 and above. Anyway if I try to open on my Samsung Galaxy Note2 which uses 720x1280, since it has…
kosijer
  • 311
  • 1
  • 3
  • 7
8
votes
3 answers

Most popular screen resolutions / ratios among android tablets and smarthphones

I am looking for a site that offer statistics/graphs providing most popular resolutions / screen ratios on android smartphones and tablets. Need it to design the UI and plan how to scale. Would be cool if someone shared the data.
Machiaweliczny
  • 572
  • 1
  • 6
  • 16
7
votes
4 answers

Accessing enum values defined in a struct

If I have the following: struct LineChartScene::LineChartSceneImpl { enum ContextMenuAction {ShowLabels, ShowPoints, SaveAsImage}; }; How can I access ShowLabels, ShowPoints etc outside LineChartScene::LineChartSceneImpl struct? I thought…
Donotalo
  • 12,748
  • 25
  • 83
  • 121
7
votes
3 answers

Which is better to use in CSS, percentage or pixels?

I am not a CSS expert and I want to make a design that will look good in all browsers and resolutions. I noticed that some websites make their design (width, height, margin, padding) with percentage, not pixels, and I am doing all my design with…
Mahmoud Saleh
  • 33,303
  • 119
  • 337
  • 498