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

조회 수: 3 (최근 30일)
Tong Wang
Tong Wang 2018년 6월 18일
댓글: Tong Wang 2018년 6월 19일
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