I saw that there was another user with a similar error, but the answer to that question was not applicable to the problem I'm having.
I want to output a large number of plots as figures in a multi-page PDF. Tools from the file exchange did not work, as they require Ghostscript to be installed and I am planning to distribute the final product. Some users suggested using the report generator, which I am doing with a programmatic approach. Prior to the following code, figures with subplots are generated and then saved as .png files in a temporary folder.
import mlreportgen.dom.*
d = Document(PDFFullName,'pdf');
d.StreamOutput = true;
open(d);
P = d.CurrentPageLayout;
P.PageMargins.Header = '0in';
P.PageMargins.Footer = '0in';
P.PageMargins.Top = '0in';
P.PageMargins.Bottom = '0in';
P.PageMargins.Left = '0in';
P.PageMargins.Right = '0in';
Figs = dir('Temp\*.png');
Figs = {Figs(:).name};
for i = 1:length(Figs)
Fig = ['Temp\Fig_' num2str(i) '.png'];
TempPlot = Image(Fig);
TempPlot.Style = {ScaleToFit};
append(d,TempPlot);
end
close(d)
Occasionally, this works perfectly. Most of the time, I get the following error:
Error using mlreportgen.dom.Document/close
Error closing document package: Could not commit changes: Could not rename the temporary package to final
location: Permission denied Permission denied
The PDF file is generated, but it has a size of 0 kb and cannot be opened. Often when this happens I end up with a folder in the same directory that has a name consisting of apparently random letters and numbers. I've tried messing around with a bunch of different parameters and have not been able to determine anything that makes it consistently work or consistently not work.
1 件のコメント
このコメントへの直接リンク
https://jp.mathworks.com/matlabcentral/answers/356108-i-m-having-errors-closing-documents-with-the-matlab-report-generator#comment_736668
このコメントへの直接リンク
https://jp.mathworks.com/matlabcentral/answers/356108-i-m-having-errors-closing-documents-with-the-matlab-report-generator#comment_736668
サインインしてコメントする。