exportgraphics r2020a issue
5 ビュー (過去 30 日間)
古いコメントを表示
I am using exportgraphics command to export hihg quality images.
exportgraphics(gcf,[filenames(1:end-4),'.tiff'], 'Resolution', 300);
Bur, exported image output as attached here. for some reason, part of the screen is saved as black. does anybody know the solution? Kinldy help.
if i use
saveas(gcf,filenames(1:end-4),'tiff');
2 件のコメント
Richard Quist
2020 年 6 月 1 日
編集済み: Richard Quist
2020 年 6 月 1 日
MS,
That is certainly not the expected behavior. Please report this to MathWorks Technical Support so this can be looked into. It will help if you can provide reproduction steps and information about how you are running MATLAB (startup options, platform/OS, machine configuration, etc). Since you mentioned that it was working properly until a few days ago, it might help if you are able to identify what might have changed... did you update your hardware or software? Did you change machines? ...
Thanks
回答 (1 件)
Ameer Hamza
2020 年 5 月 29 日
編集済み: Ameer Hamza
2020 年 5 月 29 日
I didn't face this problem in R2020a update 2, however, I remember observing something like this (not exactly sure if it was exportgraphics). Have you installed update 2? Alternatively, I suggest using this excellent package by Yair on FEX: https://www.mathworks.com/matlabcentral/fileexchange/23629-export_fig. I have found that this usually gives a better output as compared to the built-in function from MATLAB. Download this and add it to MATLAB's path and run it like this
export_fig(gcf,[filenames(1:end-4),'.tiff'], '-r300');
3 件のコメント
Ameer Hamza
2020 年 5 月 29 日
Your exportgraphics command is correct. But have you installed update 2 for R2020a?
参考
カテゴリ
Help Center および File Exchange で Printing and Saving についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!