Info
Questa domanda è chiusa. Riaprila per modificarla o per rispondere.
issue on exporting EPS figure
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
Hi,
I'm trying to save an figure to eps fromat by using the
saveas(handler, path,'epsc2');
The real picture is:
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/149698/image.png)
however what I receive is:
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/149700/image.png)
I thought there was a problem in the command line but even if I save it manually on an eps format I have the same result. If I save it in a png, then the results are fine.
I have Matab 2014a
Thanks in advance Kind Regards
1 Commento
Rohit Jain
il 15 Mag 2015
This might be due to some rendering issue of graphics.
However to workaround this issue type the below command in 'startup .m' file:
set(gcf,"Renderer','opengl')
Adding above command in 'startup.m' will make sure that above command is executed everytime MATLAB starts.
'startup.m' should be placed in initial working folder of MATLAB.
Risposte (1)
Rohit Jain
il 15 Mag 2015
This might be due to some rendering issue of graphics.
However to workaround this issue type the below command in 'startup .m' file:
set(gcf,"Renderer','opengl')
Adding above command in 'startup.m' will make sure that above command is executed everytime MATLAB starts.
'startup.m' should be placed in initial working folder of MATLAB.
0 Commenti
Questa domanda è chiusa.
Vedere anche
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!