FullScreen of a Figure with no Borders and Toolbar
Show older comments
Hello, I would like to display a full-screen image using figure, with no borders around, no Windows toolbar, nothing except the image, which changes every loop. Is that possible? I have problems using screen function with my MacBookAir, therefore I am obliged to use simply figure to implement the task. Ay suggestions will be appreciated. Thanks!
Accepted Answer
More Answers (1)
Steven Lord
on 27 Mar 2018
As of release R2018a, you can set the WindowState property of a figure to maximize the figure programmatically or display it fullscreen. If you set the MenuBar and ToolBar properties to 'none' as well the figure will have no borders, no menus, and no toolbar.
figure('WindowState', 'fullscreen', ...
'MenuBar', 'none', ...
'ToolBar', 'none')
3 Comments
Ian Hunter
on 1 Jun 2018
It is good to know this is an option, but this doesn't quite solve my issue. I want to place a figure over literally everything on a second monitor, so that the only thing that is visible is the figure. This means no operating sys menu bars, or anything. When I run the above command on linux + matlab 2018a, I have a bar surrounding the figure like any application in linux, as well as the linux menu bars. Thanks anyhoo!
Michael Reilly
on 23 Sep 2018
I believe the program you are looking for is Psychtoolbox. It's a third party add-on toolbox for MATLAB. Link can be found here: http://psychtoolbox.org/
KAE
on 11 Jul 2019
Categories
Find more on Graphics Object Properties in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!