Click here to Skip to main content
15,879,348 members
Articles / Programming Languages / Visual Basic
Article

Image in Crystal Reports

Rate me:
Please Sign up or sign in to vote.
4.50/5 (28 votes)
29 Oct 2007 421.9K   27.9K   74   55
This is sample small project to display image in crystal report
Screenshot - ImgInReport.gif

Introduction

This article will display the image in crystal report viewrBackground

Using the code

Simply open the source code in 2003.

    try { 
        // here i have define a simple datatable inwhich image will recide 
        DataTable dt = new DataTable(); 
        // object of data row 
        DataRow drow; 
        // add the column in table to store the image of Byte array type 
        dt.Columns.Add("Image", System.Type.GetType("System.Byte[]")); 
        drow = dt.NewRow; 
        // define the filestream object to read the image 
        FileStream fs; 
        // define te binary reader to read the bytes of image 
        BinaryReader br; 
        // check the existance of image 
        if (File.Exists(AppDomain.CurrentDomain.BaseDirectory + "10157.Jpg")) { 
            // open image in file stream 
            fs = new FileStream(AppDomain.CurrentDomain.BaseDirectory + "10157.Jpg", FileMode.Open); 
        } 
        else { 
            // if phot does not exist show the nophoto.jpg file 
            fs = new FileStream(AppDomain.CurrentDomain.BaseDirectory + "NoPhoto.jpg", FileMode.Open); 
        } 
        // initialise the binary reader from file streamobject 
        br = new BinaryReader(fs); 
        // define the byte array of filelength 
        byte[] imgbyte = new byte[fs.Length + 1]; 
        // read the bytes from the binary reader 
        imgbyte = br.ReadBytes(Convert.ToInt32((fs.Length))); 
        drow(0) = imgbyte; 
        // add the image in bytearray 
        dt.Rows.Add(drow); 
        // add row into the datatable 
        br.Close(); 
        // close the binary reader 
        fs.Close(); 
        // close the file stream 
        CrystalReport1 rptobj = new CrystalReport1(); 
        // object of crystal report 
        rptobj.SetDataSource(dt); 
        // set the datasource of crystalreport object 
        CrystalReportViewer1.ReportSource = rptobj; 
        //set the report source 
    } 
    catch (Exception ex) { 
        // error handling 
        Interaction.MsgBox("Missing 10157.jpg or nophoto.jpg in application folder"); 
    } 
// run the application to view image in report 

Remember if you are using c# the paste the above code in button click event

Points of Interest

In this article you will be also able to convert the image into byte array

History

In this project after clicking the button the action are performed you are free to modify as per your requirement
Feel free for any querrrrrries.

enjoy .net

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Software Developer (Senior) Avenues Technologies Pvt Ltd
India India
MCTS Microsoft Certified Technology Specialist
C-DAC
Computer Engineer

Comments and Discussions

 
AnswerApply by use sub report no need to implement BLOB field Pin
pakpoompok10-Feb-10 15:43
pakpoompok10-Feb-10 15:43 
GeneralBlob Field Pin
Member 44854195-Dec-09 13:46
Member 44854195-Dec-09 13:46 
GeneralRe: Blob Field Pin
Member 607717516-Dec-09 2:49
Member 607717516-Dec-09 2:49 
GeneralRe: Blob Field Pin
Member 448541928-Dec-09 18:35
Member 448541928-Dec-09 18:35 
AnswerRe: Blob Field - Answered Pin
IndomitablePhoenix11-Jan-11 8:06
IndomitablePhoenix11-Jan-11 8:06 
Generalblob field object [modified] Pin
apol524 p4-Nov-09 14:22
apol524 p4-Nov-09 14:22 
AnswerRe: blob field object - Answered Pin
IndomitablePhoenix11-Jan-11 8:09
IndomitablePhoenix11-Jan-11 8:09 
GeneralGood job! Pin
Nguyennamhsm27-Oct-09 21:48
Nguyennamhsm27-Oct-09 21:48 
Thank u for this article!
Generalhi Pin
shrimast25-Sep-09 21:38
shrimast25-Sep-09 21:38 
GeneralDatabase Login Error Pin
MATTXtwo26-May-09 19:19
MATTXtwo26-May-09 19:19 
AnswerRe: Database Login Error - possible solution Pin
IndomitablePhoenix11-Jan-11 8:12
IndomitablePhoenix11-Jan-11 8:12 
QuestionHow to display image in crystal report VS 2005 Pin
kiddsx4u17-Apr-09 9:42
kiddsx4u17-Apr-09 9:42 
AnswerRe: How to display image in crystal report VS 2005 Pin
Dan Duggan26-Nov-09 6:42
Dan Duggan26-Nov-09 6:42 
GeneralRe: How to display image in crystal report VS 2005 Pin
krunal108915-Sep-10 10:30
krunal108915-Sep-10 10:30 
AnswerRe: How to display image in crystal report VS 2005 - two images at once - possible solutions Pin
IndomitablePhoenix11-Jan-11 8:17
IndomitablePhoenix11-Jan-11 8:17 
GeneralRe: How to display image in crystal report VS 2005 Pin
rajnish2patel20-Dec-11 20:31
rajnish2patel20-Dec-11 20:31 
GeneralAccess denied exception Pin
nihad aliyev26-Nov-08 1:36
nihad aliyev26-Nov-08 1:36 
AnswerRe: Access denied exception - FileMode for FileStream Pin
IndomitablePhoenix11-Jan-11 8:29
IndomitablePhoenix11-Jan-11 8:29 
GeneralGreat !!! Pin
lcsistemas8-Oct-08 13:29
lcsistemas8-Oct-08 13:29 
Questionhow to make Image object on crystal report Pin
Deevan.net12-Sep-08 2:08
Deevan.net12-Sep-08 2:08 
AnswerRe: how to make Image object on crystal report Pin
hugoflores9-Apr-09 5:13
hugoflores9-Apr-09 5:13 
GeneralRe: how to make Image object on crystal report Pin
Dan Duggan26-Nov-09 6:38
Dan Duggan26-Nov-09 6:38 
AnswerRe: how to make Image object on crystal report - Answered Pin
IndomitablePhoenix11-Jan-11 8:44
IndomitablePhoenix11-Jan-11 8:44 
GeneralImage in Crystal Reports Pin
dkinjal_2823-Jul-08 19:18
dkinjal_2823-Jul-08 19:18 
AnswerRe: Image in Crystal Reports Pin
IndomitablePhoenix11-Jan-11 8:38
IndomitablePhoenix11-Jan-11 8:38 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.