How to define paper orientation in export_fig for pdfs

2 ビュー (過去 30 日間)
Aleg
Aleg 2012 年 11 月 13 日
I try to create a pdf file with a figure and it always creates file with landscape orientation. No matter what parameters I put in place. Code example:
figure('PaperSize',[20.98404194812 29.67743169791]); plot(AvgIndustryLP(1:end,1),'-g'); set(gcf, 'Color', 'w'); export_fig ('PaperOrientation','portrait','test.pdf')
Does any one know how to define paper orientation for pdfs in export_fig?
Thanks
  2 件のコメント
Jan
Jan 2012 年 11 月 13 日
Please ask the author.
Oliver Woodford
Oliver Woodford 2012 年 11 月 23 日
Please don't ask the author.

サインインしてコメントする。

回答 (1 件)

Oliver Woodford
Oliver Woodford 2012 年 11 月 23 日
The export_fig submission description, help text and the web page all clearly state that the figure is saved as it appears on screen. Therefore if you want to save a figure in landscape, make it landscape on screen. E.g.
figure('Position', [100 100 500 300]);
plot(rand(3));
export_fig test.pdf
The PaperSize property you set is ignored by export_fig, and export_fig has no PaperOrientation option.

カテゴリ

Help Center および File ExchangeGenomics and Next Generation Sequencing についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by