Click here to Skip to main content
Click here to Skip to main content

Generate a PDF File using CrystalReports

By , 14 Nov 2006
 

Introduction

Some times we need to create a Portable Document Format and we are always trying to get fancy PDF converters. Here is a simple way to do it, just using the CrystalReports engine built-in export method.

Using the code

You need to create a CrystalReports reprt, and define the data connection, data set, and the layout. Suppose we have created the StrongTypedReport report. We would call the following CrearPDF method, passing the DataSet filled with the data to be shown, along with the file name of the PDF to be output:

/// <summary>
/// Create a PDF file from a CrystalReport report.
/// </summary>
/// <param name="ds">DataSet, same type used in the report</param>
/// <param name="nombrearchivopdf">PDF file
///            output archive name</param>
public void CrearPDF(DataSet ds, string nombrearchivopdf)
{         
   StrongTypedReport cr = new StrongTypedReport();      
   
   // Set the report DataSet   
   cr.SetDataSource(ds);   
   
   // Export the report to a Stream, in PDF format   
   Stream input = cr.ExportToStream(
     CrystalDecisions.Shared.ExportFormatType.PortableDocFormat);   
   // Open the output file Stream    
   FileStream output = new FileStream(nombrearchivopdf, 
                                      FileMode.Create);   
   
   // Copy the buffer Stream to the ouput file   
   // We avoid the use of cr.Export, because crystal report   
   // do not inherits the current Thread permission   
   const int size = 4096; 
   byte[] bytes = new byte[4096]; 
   int numBytes;            
   
   while((numBytes = input.Read(bytes, 0, size)) > 0)         
      output.Write(bytes, 0, numBytes);   
   
   // Close the ouput file Stream.
   output.Close();
}

Points of Interest

That's it! It works for me! The Stream input and output buffering used could be useful if you wish to redirect it to the Response Stream object, and let the browser directly show it, or let the user download it.

History

  • Nov. 13, 2006 - First version.

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

About the Author

rmortega77
Software Developer CIMEX S.A.
Cuba Cuba
Rodolfo Ortega is a Cuban Computer Scientist. He works as IT Auditor for the CIMEX S.A. subsidiary in Holguin, Cuba. He lives and works in Holguin, in the eastern part of the island of Cuba.

You can contact him at rodolfom[]cimex.com.cu for any personal message: Ideas on new articles, bibliography about new APIs, questions, are wellcome.

Submit questions related with current article to the article forum.

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
GeneralBinding CR datasource with complex .net objectmember73amit11-Jul-10 19:04 
GeneralMy vote of 2memberAhsanS10-May-09 21:48 
Generalintegration of crystalreport in asp.netmemberhr Sheik5-Jun-08 17:31 
Questionhi all, crystal reports in asp.netmemberHaroonrashed5-Jun-08 1:05 
GeneralCould you add to thismemberinetfly1232-May-07 2:19 
Questionso?membereRRaTuM20-Nov-06 23:30 

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

Permalink | Advertise | Privacy | Mobile
Web04 | 2.6.130617.1 | Last Updated 14 Nov 2006
Article Copyright 2006 by rmortega77
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid