build_report_to_images method

build_report_to_images(input_file_name, save_options, data, data_source_names)

Populates the template document with data from multiple sources. Renders the output to images.

def build_report_to_images(self, input_file_name: str, save_options: aspose.words.saving.ImageSaveOptions, data: List[object], data_source_names: List[str]):
    ...
ParameterTypeDescription
input_file_namestrThe input file name.
save_optionsImageSaveOptionsThe output’s save options.
dataList[object]An array of data source objects.
data_source_namesList[str]An array of names to reference the data source objects within the template.

build_report_to_images(input_file_name, save_options, data, data_source_names, report_builder_options)

Populates the template document with data from multiple sources. Renders the output to images.

def build_report_to_images(self, input_file_name: str, save_options: aspose.words.saving.ImageSaveOptions, data: List[object], data_source_names: List[str], report_builder_options: aspose.words.lowcode.ReportBuilderOptions):
    ...
ParameterTypeDescription
input_file_namestrThe input file name.
save_optionsImageSaveOptionsThe output’s save options.
dataList[object]An array of data source objects.
data_source_namesList[str]An array of names to reference the data source objects within the template.
report_builder_optionsReportBuilderOptionsAdditional report build options.

build_report_to_images(input_stream, save_options, data, data_source_names)

Populates the template document with data from multiple sources. Renders the output to images.

def build_report_to_images(self, input_stream: io.BytesIO, save_options: aspose.words.saving.ImageSaveOptions, data: List[object], data_source_names: List[str]):
    ...
ParameterTypeDescription
input_streamio.BytesIOThe input file stream.
save_optionsImageSaveOptionsThe output’s save options.
dataList[object]An array of data source objects.
data_source_namesList[str]An array of names to reference the data source objects within the template.

build_report_to_images(input_stream, save_options, data, data_source_names, report_builder_options)

Populates the template document with data from multiple sources. Renders the output to images.

def build_report_to_images(self, input_stream: io.BytesIO, save_options: aspose.words.saving.ImageSaveOptions, data: List[object], data_source_names: List[str], report_builder_options: aspose.words.lowcode.ReportBuilderOptions):
    ...
ParameterTypeDescription
input_streamio.BytesIOThe input file stream.
save_optionsImageSaveOptionsThe output’s save options.
dataList[object]An array of data source objects.
data_source_namesList[str]An array of names to reference the data source objects within the template.
report_builder_optionsReportBuilderOptionsAdditional report build options.

See Also