How to create a PDF report with for-loop in Reporter Generator?

7 次查看(过去 30 天)
The format of every page in my report is identical, task of report is to load a different image in every page, i tried following code to create 5 blank chapters, but it seems doesn't work.
NumberImage = 5;
for i = 1: NumberImage
ch(i) = Chapter();
ch(i).Layout.Landscape = 1;
end
It would be great, if i can get some tips from you.

采纳的回答

Rahul Singhal
Rahul Singhal 2018-6-18
Below is a sample code to create a new landscape chapter for every image and add them to the report:
import mlreportgen.report.*
import mlreportgen.dom.*
rpt = Report("My Report","pdf");
NumberImage = 5;
for i = 1: NumberImage
% Create a landscape chapter
ch = Chapter("Images");
ch.Layout.Landscape = true;
% Add image to the chapter
add(ch, Image(which("b747.jpg")));
% Add chapter to the report
add(rpt,ch);
end
close(rpt);
rptview(rpt);
If your use case is just to add different images in the same landscape mode, and not to create multiple chapter for that, you can just create a single chapter before the loop, add all the images to that chapter in the loop, and then add the chapter to the report after the loop.
Hope this helps!
  5 个评论
Rahul Singhal
Rahul Singhal 2018-6-18
You will have to process the matrix to either display the image in a MATLAB figure window or to write it in an image file before adding it to the report.

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 MATLAB Report Generator 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by