Tagged Questions
Questions about image resolution.
34
votes
3answers
676 views
C# Method Resolution, long vs int
class foo
{
public void bar(int i) { ... };
public void bar(long i) { ... };
}
foo.bar(10);
I would expect this code to give me some error, or at least an warning, but not so...
What version ...
29
votes
23answers
113k views
Recommended website resolution (width and height)?
Is there any standard on common website resolution?
We are targeting newer monitors, perhaps at least 1280px wide, but the height may varies, and each browser may have different toolbar heights too.
...
17
votes
10answers
2k views
C++ overload resolution
Given the following example, why do I have to explicitly use the statement b->A::DoSomething() rather than just b->DoSomething()?
Shouldn't the compiler's overload resolution figure out which ...
15
votes
7answers
680 views
How to simulate a higher resolution screen?
Is there any program or plugin for the browser to test my websites in resolutions that are higher than my screen's?
Eg: I have a 1440x900 screen, and I want to test the website in 1920x1200, ...
15
votes
6answers
8k views
How do you compare DateTime objects using a specified tolerance in C#?
By default C# compares DateTime objects to the 100ns tick. However, my database returns DateTime values to the nearest millisecond. What's the best way to compare two DateTime objects in C# using a ...
13
votes
2answers
10k views
What resolution should my Android splash screens be?
I'm creating a splash screen that will display while my Android application loads. I'd like to create it at the correct size so Android won't auto-scale it up or down to fit the screen. (It's a ...
12
votes
2answers
2k views
Do I need 14 different layouts to support all Android devices?
I'm really feeling confused. From the docs at developer.android.com, it seems in order to keep my images scaled correctly (aspect ratio too) across all current Android devices I need all these ...
9
votes
3answers
266 views
Customizing Autofac's component resolution / Issue with generic co-/contravariance
First, sorry for the vague question title. I couldn't come up with a more precise one.
Given these types:
{ TCommand : ICommand }
...
8
votes
4answers
3k views
Android: Why create specific images for ldpi, mdpi and hdpi?
I'm currently trying to support a larger range of devices with my Android app. However, even after reading through what the Android Dev Guide has to say on the issue, I'm unsure as to why I should ...
8
votes
4answers
46k views
jQuery Screen Resolution Height Adjustment
In order to better balance out a page I am working on I would like to find a way to increase the top margin of a DIV depending on the screen resolution. What is my best way to set these dimensions ...
8
votes
3answers
6k views
C# WPF resolution independancy?
I am developing a map control in WPF with C#. I am using a canvas control e.g. 400 x 200 which is assigned a map area of e.g. 2,000m x 1,000m.
The scale of the map would be: canvas_size_in_meters / ...
8
votes
2answers
3k views
Programmatically change screen resolution?
Is there a way to programmatically change the screen resolution or enable/disable multiple monitors in Windows XP? For example to change from 1024x768 with one monitor to 1280x104 on two monitors? I ...
7
votes
1answer
465 views
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 ...
7
votes
2answers
502 views
CamcorderProfile.QUALITY_HIGH resolution produces green flickering video
I haven't found any explanation for this so far. Basically I have a video recording class which works splendidly when setVideoSize() is set to 720 x 480 on my Samsung Galaxy S2.
I want it to record ...
7
votes
5answers
438 views
What is the iPhone screen resolution?
I know this has been asked but I'm still confounded.
I'm trying to build a dead-simple page for the iPhone: logo at the top, phone number, address, and a BG that takes up the entire screen ...
7
votes
5answers
190 views
Common algorithm question
Suppose we have some mesh (see the illustrating picture from CorelDraw, which uses the same technique in "Mesh fill" instrument).
Obviously this kind of mesh is represented by a set of points and ...
7
votes
5answers
4k views
How do I get Monitor resolution in Python?
What is the simplest way to get monitor resolution (Preferably in a tuple)?
6
votes
3answers
116 views
Is there any default strategy to prepare application for a resolution change?
How to prepare a Silverlight or WPF application to change from a big resolution to a small resolution?
I guess using dockpanel strategy only works for changing from a small to a big resolution.
So, ...
6
votes
6answers
1k views
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, ...
6
votes
1answer
2k views
Determining image sizes for multiple android screen sizes/densities
I've been reviewing the Supporting Multiple Screens documentation on the Android and I just need some additional clarification...
It's my understanding that designing three unique interfaces (ldpi, ...
6
votes
4answers
7k views
Is there a standard webpage resolution for mobile phones?
Most designers use 1024x768 as a baseline for website development. That allows them to use css grid systems like 960 & blueprint to easily outline content. Is there similar baseline resolution ...
5
votes
2answers
141 views
Best way of dynamically scaling a page?
I was wondering what you guys and gals would recommend as the most efficient want to dynamically rescale a website based on resolution?
Is there anything that rescales elements AND images?
Or do I ...
5
votes
2answers
5k views
Set background image according to screen resolution
I would like to be able to change my webpage background image according to the screen resolution the user uses so:
if screen resolution is greater than or equal to 1200*600 then background = ...
5
votes
2answers
519 views
Silverlight screen resolution
I want to figure out a way in my silverlight application to set the PageSize on my DataPager based on the maximized size of the window so that the scrollbars do not show when maximized. Any ideas?
5
votes
3answers
3k views
Android programming - screen resolution
I'm new to Android programming.
I've seen different phones with different screen resolutions that run on Android.
How can I create an application that works on all android devices with out any ...
5
votes
1answer
3k views
Objective C - how to get current screen resolution?
is there any way to get the users screen resolution with objective c?
Thanks.
Solution:
int width = [[NSScreen mainScreen] frame].size.width;
int height = [[NSScreen mainScreen] frame].size.height;
...
5
votes
4answers
10k views
Get the resolution of a jpeg image using C# and the .NET Environment?
Our clients will be uploading images to be printed on their documents and we have been asked to come up with a way to get the resolution of the image in order to warn them if the image has too low of ...
4
votes
3answers
111 views
What is the approximate resolution of a single precision floating point number when its around zero
I am storing many longitudes and latitudes as doubles, I am wondering if I can get away with storing them as floats.
To answer this question, I need to know the approximate resolution of a single ...
4
votes
0answers
215 views
Phonegap not scaling properly between iPad and iPhone
I developed an app for iPad using Phonegap 0.9.6.
Seems to be working fine.
The main element in the app is 768 px wide, so scaling has not been a problem one way or the other.
Now I am experimenting ...
4
votes
3answers
196 views
4
votes
1answer
1k views
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 ...
4
votes
4answers
2k views
How detect current screen resolution?
How do I from Winapi (in C or C++) detect the current screen resolution?
I want to start a new OpenGL fullscreen window, but want it open with the same horizontal and vertical size which the desktop ...
4
votes
4answers
886 views
4
votes
1answer
1k views
iPhone 4 resolution difficulty - @2x naming technique not working for button image
I have a button with an image set through interface builder. The original image is SearchImage.png and the high rez version is SearchImage@2x.png. I'm absolutely sure that no typos were made, and the ...
4
votes
1answer
175 views
Check website at High Resolution [closed]
I want to check my website at high reslutions which is not there in my PC. So could anyone suggest me any online utility where I can check my website at high resolutions.
Thanks in advance!!!
4
votes
6answers
2k views
Can pdflatex (or any tex package) automatically rescale included images which have been reduced in size?
I'm writing my thesis in LaTeX, generating it with pdflatex. I have a large number of figures, many of which are bitmaps (as opposed to SVG) in PNG/JPEG format. I've generally created them to be ...
4
votes
5answers
907 views
Resolution Free Application
What is meant by the Resolution free application, As I have discussed it with many of my friend and they says that resolution free mean what ever resolution user want to see an application it should ...
4
votes
2answers
522 views
Using PHP to recreate something similar to VistaPrint / CafePress / Zazzle. Any Ideas?
I am working on a website in which the client wishes to have users upload background images to a printable design, crop to size, add text. Do this to multiple pages then generate a pdf of the 'book'
...
4
votes
2answers
776 views
Why is Android looking for QVGA resources in the wrong order mdpi > hdpi > ldpi?
Im trying to do some testing with a QVGA emulator and I find that it looks for an image resource in the mentioned order.
drawable-mdpi 1st
drawable-hdpi 2nd
drawable-ldpi 3rd (it does get found only ...
4
votes
5answers
2k views
Screen Resolution Problem In WPF?
I'm gonna detect the resolution with the following code in WPF :
double height = System.Windows.SystemParameters.PrimaryScreenHeight;
double width = ...
4
votes
2answers
656 views
Windows Forms resolution problem
I have developed a 1024 *780 resolution screen in Windows Forms, but some say that it does not fit properly at higher resolutions. Is there any way to handle this?
Is there a way to make Windows ...
4
votes
3answers
3k views
General Browser display statistics
I need to come up with some figures on browser display (resolution) statistics. Obviously there is W3 Schools, however they state that these are results from their site and is biased towards tech ...
4
votes
11answers
13k views
can php detect client browser monitor size/resolution?
Php can detect IP, hostname, client agent etc. Can php detect client browser monitor size/resolution?
4
votes
13answers
6k views
What's the standard “minimum” resolution I should support with a website? [closed]
Duplicate:
Recommended website resolution (width and height)?
I tend to think of 1024x768 as the minimum Screen Resolution that a modern web browser will run in, but I worry when using this ...
3
votes
4answers
126 views
Avoid Multiple Drawable Sets (hdpi/mdpi/ldpi)
Is there a way to avoid having multiple sets of drawables per resolution? I have close to 50 images (simple icons mostly, not using anything needing 9-patch), seems like a lot of redundant work to ...
3
votes
1answer
146 views
Getting the optimal resolution in Visual Studio 2010
Is there any way of getting the monitors optimal resolution in vb?
Thanks.
3
votes
2answers
366 views
How to change the C++ boost posix_time::ptime's resolution to millisecond?
I'm trying to print a boost::posix_time::ptime in the format of "YYYY-MM-DD hh:mm:ss.fff" where the MM is a 2-digit month and fff a 3-digit millisecond. An example is: 2011-07-14 22:38:40.123.
I'm ...
3
votes
2answers
68 views
C# overloading resolution with hierarchical parameters
In the example I was expecting to get Third as output since class Third has an exact signature match to the Print call, but the output is Second. Why that happens?
class First
{
public virtual ...
3
votes
2answers
329 views
AndroidApp: not using the full screen resolution
I tried to test Android-programming on my phone and not the emulator. There the apps only use some little space in center of the screen. In the emulator everything works fine. So I also tried the ...
3
votes
2answers
468 views
CameraCaptureTask return only pictures with 1296x972 resolution in WP7
I'm using CameraCaptureTask chooser and always is returning a smaller photo that the original. Camera has a resolution of 2592x1944, but the returned photo is always 1296x972. I'm using a LG E-900.
...