How can I maintain title size when creating report snapshot
6 views (last 30 days)
Show older comments
I am using the following code to print a figure into a .pdf report, using Matlab Report Generator
figure(LCAPlot),
set(LCAPlot, 'Position', [50, 50, 1400, 600])
figure1 = Figure(LCAPlot);
Print=Image(getSnapshotImage(figure1, FinalReport));
Print.Style = {ScaleToFit(true)};
However, the title of the figure always keeps the same size in the pdf report, even when I increase it on the Matlab figure.
Is there a property that can maintain the set title size ?

4 Comments
Eric
on 29 Apr 2019
I'm not entirely sure what you mean by layout tables. Are you using tables to layout images so that they are side-by-side? If so, that should work.
I need to see some sample code, to figure out what went wrong.
Answers (0)
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!