Hi
I have an invoice I have created with Telerik Reporting. When I export it to PDF the company logo is all grey and fuzzy. I have seen some post regarding this and change the display settings but it hasn't resolved it.
Here is the code i am using just incase it is related to that. I am also using Q1 2009.
I have an invoice I have created with Telerik Reporting. When I export it to PDF the company logo is all grey and fuzzy. I have seen some post regarding this and change the display settings but it hasn't resolved it.
Here is the code i am using just incase it is related to that. I am also using Q1 2009.
string mimType = string.Empty; |
string extension = string.Empty; |
Encoding encoding = null; |
byte[] buffer = Telerik.Reporting.Processing.ReportProcessor.Render( |
"PDF", invoice, null, out mimType, out extension, out encoding); |
FileStream fs = new FileStream("c:\\Invoice.pdf", FileMode.Create); |
fs.Write(buffer, 0, buffer.Length); |
fs.Flush(); |
fs.Close(); |