Publishing options: low image quality, no options to export as vector graphics

조회 수: 12 (최근 30일)
I want to publish my matlab code and its graphical output with annotations for reporting/documentation purposes.
As the live scripts are not suited for source control in git (or are they?), I use plain .m files and the publishing markup (https://de.mathworks.com/help/matlab/matlab_prog/marking-up-matlab-comments-for-publishing.html).
Yet in the publishing options (under publish/edit configurations), I can only choose png/jpeg/bmp/tiff, and the image resolution is low. Is there an option to generate pdf or html files with vector graphics instead of pixelated graphics?

채택된 답변

Richard Quist
Richard Quist 2022년 5월 6일
I don't think there's a way to get true-vector output with the publish command, or to increase the resolution/DPI of the figure images it captures.
Have you tried using any of the "Export to..." options provided by the Live Editor? I believe they generate higher quality output for figures. Also, in R2022a, a new export function was added to allow programmatic exporting of .mlx files to several formats, such as PDF, Microsoft Word and HTML.
% Example of saving an MLX file to PDF
% using the new export function introduced in R2022a
export("myscript.mlx"); % exports to myscript.pdf
export("myscript.mlx", "output.pdf"); % export to output.pdf
I hope that helps.
  댓글 수: 1
Rene Burger
Rene Burger 2022년 5월 16일
편집: Rene Burger 2022년 5월 16일
Thank you for your Answer!
It's sad that MATLABs publishing options are so restricted. The figure resolution in the export via the live editor is also not better by default.
As a workaround, I now do the following:
  1. Save the source controllable .m file temporarily as .mlx
  2. Set the export figure resolution for pdf exports in .mlx scripts using the code below
  3. Export as pdf
s = settings;
s.matlab.editor.export.FigureResolution.TemporaryValue = 600;
In mlx pdf export the formatting looks nice and the resolution now is good. Yet there is no automatic line breaking with very long code lines, so one has to keep that in mind...

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Printing and Saving에 대해 자세히 알아보기

제품


릴리스

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by