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

3 views (last 30 days)
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.

Accepted Answer

Rahul Singhal
Rahul Singhal on 18 Jun 2018
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 Comments
Rahul Singhal
Rahul Singhal on 18 Jun 2018
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.

Sign in to comment.

More Answers (0)

Categories

Find more on MATLAB Report Generator in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!