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
0
votes
4 answers

css fluid layout image issues

okay im making a layout that has two sides. the left is 30% and the right 70%. i have a widescreen monitor so all the images will display how i want them too with good room left. BUT on lower resolutions and the most common 1024x768, the image i…
user645607
  • 225
  • 1
  • 4
  • 17
0
votes
0 answers

Modding a game but can't go fullscreen

I'm modding a game called Zuma Deluxe, i recently changed the resolution of the game in hex (with HXD), i want to port the game into 540p but there is a problem. I can't go fullscreen. with 1280x720, 800x600, 1680x1050 it works, but it won't work…
0
votes
0 answers

Increase frame rate and decrease duration of video using FFMPEG

Please help me out. I have a video of 0.04 frame rate and 02:46:40 duration, and I want to increase frame rate to 25fps and decrease duration to 10s-13s. I have used these commands for fps and speed respectively: ffmpeg -i input.avi -r 25…
AirPaul
  • 11
0
votes
3 answers

How to set the Size of an Android Galaxy Tab Emulator?

I have found a problem of access size on my Galaxy Tab emulator. Some of its button are hidden from me so I am unable to run my application because I cannot see the button.
Amit
  • 33
  • 1
  • 6
  • 12
0
votes
1 answer

How to reduce the spatial resolution of an image collection in Google Earth Engine?

Good Day Please may you kindly assist me with the following. I am attempting to generate a time series of NDVI estimates using Landsat 7 and 8 for a particular region of interest (ROI). I would then like to compare these estimates against NDVI…
0
votes
3 answers

How to find home screen icon size from screen resolution

I am building a prank mobile application that simulate the mobile home screen. When the user start the application it looks similar to the actual home screen. I am going to do this by laying down images of icons in a grid. These images would be…
Janaka
  • 2,505
  • 4
  • 33
  • 57
0
votes
1 answer

Chart.js Increase font size for higher resolution (i.e. monitor-agnostic chart configuration )

My chart is showing its labels (AxesLabels, DataLabels) perfectly with the defined fontSize which is passed to the config of the graph in normal resolution (1920*180). **STEP1: Defined the chart in my angular component(.html) as:**
OmGanesh
  • 952
  • 1
  • 12
  • 24
0
votes
2 answers

How to fit images to different screen resolutions?

I'm doing a certain project for a programming course, and I've got a little problem with HTML, regarding the scale of pictures. Basically, I don't know how to make the pictures fit different screen resolutions with CSS. I've tried with width and…
0
votes
0 answers

How to Merge Multiple video files with different resolution, make padding for the low resolution video in android FFMPEG

I want to merge multiple videos with different resolutions. if the resolution is low than any other video, it should make a black padding around the low resolution video. I tried this command var highestVideoWidth: Int = 0 var…
0
votes
2 answers

NSIS - Refresh rate of a monitor to a variable from a CMD command

This is how I get the refresh rate of my primary monitor, by typing this command in CMD: wmic PATH Win32_videocontroller get currentrefreshrate Result: CurrentRefreshRate 144 75 The second line is the refresh rate of my primary monitor. I would…
Kardaw
  • 371
  • 2
  • 14
0
votes
1 answer

What does renderer.setSize really do?

I am trying to learn how adapting things to different screen resolutions works in three.js. Unfortunately, I have not found anywhere a good and understandable explanation about what the metod "renderer.setSize();" really does. I have revised the…
0
votes
2 answers

How to get screen coordinate of a element in selenium? [Python]

I wanted to know that how can one get the coordinates of a element according to the screen resolution rather than the browser windows size, I have tried this already (code block), but it provides coordinates according to the browser window rather…
Coffee Guy
  • 145
  • 1
  • 1
  • 8
0
votes
1 answer

Set display resolution for Matlab with SLURM

I use to run some Matlab simulations on a HPC cluster. The cluster runs SLURM. One of the outputs of my Matlab script is a GIF file which shows the time evolution of what I am simulating. Every frame of the GIF file is obtained by means of the…
AndreaPaco
  • 101
  • 1
0
votes
3 answers

Delphi application resolution problem

I have written an application in Delphi. To the window state of a form I've given wsMaximized. There are three buttons on the form which are anchored to the left, top and bottom. When I run the app on my own laptop I can see all three buttons but…
Mikayil Abdullayev
  • 12,117
  • 26
  • 122
  • 206
0
votes
1 answer

How to get real screen resolution using Dimensions in react-native / expo and style the app?

i am working on a react-native/expo app. yesterday i got to the styling stage and learned that Dimensions.get('window').width returns half of the real width of my devices (one android, one iPad), but the real width of an emulated android device. it…