Clear Filters
Clear Filters

dark mode figure save flashing

1 view (last 30 days)
LJH
LJH on 1 Apr 2024
Commented: Adam Danz on 1 Apr 2024
Hello. I have a simple, but serious problem when using saveas function in dark mode.
I use beta ver of the dark mode in 2023b and I'm trying to generate figure using saveas function.
But when saving given figure, it is flashing and the color of the figure will be inverted and blurred.
Here is my code and results.
x = [1,2,3];
y = [2,4,6];
plot(x,y)
saveas(gcf,'test.png')
Thank you.

Accepted Answer

Angelo Yeo
Angelo Yeo on 1 Apr 2024
Edited: Angelo Yeo on 1 Apr 2024
Hi @LJH,
Thank you for reporting this issue. I was able to reproduce the issue in R2023b New Desktop.
(1) As a workaround, you can change the theme of your figure into "light" mode and save the figure in R2023b.
fig.Theme = 'light'; % "fig" is figure you use
saveas(gcf,'test2.png')
(2) The issue does not persist in New Desktop R2024a. You can upgrade your release to R2024a to work around the issue.
(3) Can you please report the issue to development team through the feedback button indicated below? Please note that the "New Desktop" mode is beta-released and there can be unexpected issues.
  1 Comment
Adam Danz
Adam Danz on 1 Apr 2024
Thanks for sharing this @LJH
We are aware of this issue in the 23b beta release and, as Angelo mentioned, this issue has been fixed in the 24a release.
Please feel free to send feedback about any other related issues.

Sign in to comment.

More Answers (0)

Categories

Find more on Get Started with MATLAB in Help Center and File Exchange

Products


Release

R2023b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!