Let’s start the work. I don’t have a database at the moment with me. So what I will do is that I will read an image from disk and convert it into byte array and then pass it to crystal report. I hope this will not matter if we read image from database or a disk.
I create a new window project and name it ImagesInRpt. Add a new crystal report in the project. I name the report “rptImages”. In the next dialog window select blank report and press ok.
Next we will read an Image from the disk and convert it into bytes. And then create a DataTable and store image in it. And then we will create schema file and design report from schema file. On the Form1 I added one button ‘Load Report’ and on its click event a schema file is created. So that we can design the reports.
As you can see the on the click even we call a method which return a data table. We created two column in the data table one is Img of data type System.Byte[], and the other one is ImgName of data type System.String. The we create XML schema file and stored it on the disk. Next we will design the report from this schema file.
Open the report and right click on database fields to open the Database expert from Field Explorer. Create a new connection as shown below. And select ADO.Net.
This will open another window. Select the schema file, in our case we created it on the D drive of our hard disk. After selecting the file click on finish button.
Next you can see the column names on the field explorer in under database fields. Drag the column on your report and do some formatting. Now on the form drap the CrystalReportViewer and ReportDocument control on the form. Next we read the image and add it the datatable in the form of bytes. And pass the data table to crystal report viewer. On the button click event I commented the line which generates XML schema file. We no more need that file as the purpose of creating this file is only to design the report.
Now run the application and you can see once you click on the Report Load button, the report gets loaded.
You can download the source code from the following location ImagesInRpt-SourceCode