How to Export a Report to JPEG / PNG / BMP / GIF / TIFF / EMF from FastReport .NET

2025-09-23

In the world of modern software development, creating high-quality and informative reports plays a key role in ensuring effective data analysis and informed decision-making. FastReport .NET is a powerful library for creating reports in .NET applications, providing a wide range of tools for creating and customizing reports.

One of the key aspects of this library is the ability to export reports to various graphic formats, such as JPEG, PNG, BMP, GIF, TIFF, and EMF. In this article, we will examine how easily and efficiently reports from FastReport .NET are exported to each of these formats and open up new possibilities for visualizing and presenting data.

 


 

To begin, we will export reports through the designer. To do this, we need to go to Preview >> “Save” >> “Images” >> “Image File…”.

Report saving menu

After that, we will see a window with export settings to an image.

Image export window

Basic Settings for Exporting to Images

The page block is designed to save the necessary pages of the report.

Basic settings:

  • Format — used to select the desired format (JPEG, PNG, BMP, GIF, TIFF, EMF).
  • Resolution — the resolution of the resulting image, 96 is the standard screen resolution.
  • JPEG Quality — the quality of the final file will be available when this format is selected in the Format field. This value is specified as a percentage. The larger the number entered, the higher the quality of the file and the less its compression.
  • Separate file for each page — when this checkbox is selected, as many files will be created as there are pages.
  • Multi-frame TIFF — if the export generates several images, then a multi-page single file will be generated when the TIFF format is selected.
  • Monochrome TIFF — black and white image when selecting the TIFF format.
  • Open after export — when this checkbox is selected, the file will be opened after saving.

After we have selected the settings we need, click “OK,” select the location to save the desired image, and open it.

Saved report as an image

Let’s now try to save the report, but through code. We launch Visual Studio and create a project on WinForms. Next, we need to write the code in the form.

using FastReport;
using FastReport.Export.Image;
...
 private void Form1_Load(object sender, EventArgs e)
 {
 ImageExport imageExport = new ImageExport();
 Report report = new Report();
 report.Load(“Simple List.frx);
 report.Prepare();
 //Selecting the format of the image to be saved
 imageExport.ImageFormat=ImageExportFormat.Tiff;
 //Resolution of the resulting image
 imageExport.Resolution = 96;
 //Jpeg file quality
 imageExport.JpegQuality = 100;
 //If the export generates several images, then when the TIFF format is selected
 //a multi-page single file will be generated
 imageExport.MultiFrameTiff = true;
 //Monochrome image when selecting the TIFF format
 imageExport.MonochromeTiff = false;
 report.Export(imageExport, “img.tiff); 
 }

We launch our project and open the resulting image.

Saving the report as an image through code

Thus, we managed to export the report to images both through code and through the designer itself. And also, we examined in detail each property of the export settings. The FastReport .NET library can become an indispensable tool for developers who want to create high-quality and informative reports.

.NET Export FastReport Report
October 13, 2025

How to Use Excel Formulas in a Report When Exporting to MS Excel

Starting with version FastReport .NET 2026.1, it is now possible to export formulas to Microsoft Excel. It is important to set up formula exports correctly and follow the syntax.
October 13, 2025

New Features for Exporting Images to Microsoft Word in FastReport .NET

In the latest version of FastReport .NET we have added new image export features. Now you can independently adjust the balance between the quality and size of the final document.
September 30, 2025

How to Install the FastReport .NET Report Designer with Pre-installed Plugins

Read the article as from version 2025.2.5 for FastReport .NET WinForms and FastReport .NET WEB allows you to install a report designer with all plugins without building dll files.

© 1998-2025 Fast Reports Inc.