SetResolution

>Psychtoolbox>PsychOneliners

oldRes=SetResolution(screenNumber,width,height,[hz],[pixelSize])
oldRes=SetResolution(screenNumber,res)

Set the resolution of the screen. This is intended to be used in
programs that run psychophysical experiments, so SetResolution is
strict. It issues a fatal error unless it can provide exactly the
resolution you specified. (For lenience, look at NearestResolution.)

“screenNumber” is the screen number.

“width” and “height” are the desired dimensions in pixels.

“hz” is the desired refresh rate (default is current frame rate).

“pixelSize” 8, 16, 24, or 32 bits and defaults to current pixelSize.
On modern operating systems, you should leave “pixelSize” alone, as
often there will be only one good choice anyway, which is already set
as the default, so changing it will usually change it for the worse!

Returns the current resolution as “oldRes”.

oldRes=SetResolution(0,1024,768,75);
w=Screen(0,’OpenWindow’);
Screen(w,’PutImage’,image);
Screen(w,’Close’);
SetResolution(0, oldRes);

To display a list of available resolutions, try ResolutionTest. Also see
NearestResolution, ResolutionTest, and Screen(‘Resolution’)
and Screen(‘Resolutions’).

NOTE: Apple has all the new LCD screens return a frame rate of 0, so
we treat that value as a special case. A request for “hz” of NaN will
match only with a frame rate of 0.

NOTE: On Linux/X11 this only works as you’d expect if there is only one
video output connected to a given Psychtoolbox screen / X-Screen. On a
setup with multiple outputs per screen, this will only change the
size of the framebuffer, but not the resolution of the actual displays!
Use Screen(‘ConfigureDisplay’, ‘Scanout’, …); to change settings on
such a multi-display per screen setup on Linux.

Originally written by Sabina Wolfson.

Path   Retrieve current version from GitHub | View changelog
Psychtoolbox/PsychOneliners/SetResolution.m