Contenido principal

getImageReporter

Class: mlreportgen.report.FormalImage
Namespace: mlreportgen.report

Get formal image reporter

Syntax

reporter = getImageReporter(image)

Description

reporter = getImageReporter(image) returns a reporter that generates a formal image based on the Image property of mlreportgen.report.FormalImage. The Image format overrides any corresponding formats in the image template. Use this getImageReporter method to override the default image template of the image.

Input Arguments

expand all

Source of image to add to report, specified as a character vector or character array, or as a DOM Image object. If you use a character vector or character array, specify the system path to the image file.

Output Arguments

expand all

Formal image reporter for the image, returned as a reporter object.

Examples

expand all

  1. Create a template named MyImageTemplate.

  2. Customize the FormalImageImage style.

  3. Use the getImageReporter method and the TemplateSrc property to use your template.

    import mlreportgen.report.*
    rpt = Report();
    image = FormalImage();
    imageReporter = getImageReporter(image);
    image.TemplateSrc = "MyImageTemplate";
    add(rpt,image);
    

Version History

Introduced in R2017b