フィルターのクリア

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

7 ビュー (過去 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.
Tong Wang
Tong Wang 2018 年 6 月 19 日
Thank you!

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeMATLAB Report Generator についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by