Colorbar font size decreases upon export
조회 수: 6 (최근 30일)
이전 댓글 표시
When I export my contours with colorbar labels, the font size is being decreased. Take, for example:
testx = 1:10; testy = 1:10; testc = [1:10].*ones(10,10);
figure,contourf(testx,testy,testc)
c = colorbar; c.Label.String = 'string'; c.Label.FontSize = 14;
Make this figure, go to File > Export setup > Export (I'm exporting to .eps) and the colorbar label will shrink. I have found other answer that would let me maintain a minimum size for ALL text, but I'd like the tick labels to remain small. Is there a way to prevent this?
댓글 수: 0
채택된 답변
ANKUR KUMAR
2021년 3월 13일
편집: Image Analyst
2021년 3월 15일
Instead of manually saving the figure, you can prefer to save figure by command. It won't shrink the figure.
print('sample','-deps','-r200')
추가 답변 (1개)
Image Analyst
2021년 3월 15일
Have you tried exportgraphics(), if youre using r2020a or later? Or try using saveas().
참고 항목
카테고리
Help Center 및 File Exchange에서 Purple에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!