Я пытаюсь отобразить изображение в отчете rdlc, у меня есть объект изображения и сохраненный параметр с именем BoxImage
.
public void Run(string BoxImage, string LogoImage)
{
try
{
LocalReport report = new LocalReport();
var path = System.Windows.Forms.Application.StartupPath;
log.Info(Path.Combine(path, @"Reporting\QCLabelV2.rdlc"));
report.ReportPath = Path.Combine(path, @"Reporting\QCLabelV2.rdlc");
report.EnableExternalImages = true;
ReportParameter boxImage = new ReportParameter("BoxImage");
boxImage.Values.Add(BoxImage);
report.SetParameters(boxImage);
report.DataSources.Clear();
report.DataSources.Add(new ReportDataSource("dsList", LoadSalesData()));
report.Refresh();
log.Info("Finished Refresh");
Export(report);
log.Info("Export Complete");
Print();
log.Info("Print Complete");
}
catch (Exception ex)
{
}
}
Это моя функция печати
private void Print()
{
ProcessStartInfo info = new ProcessStartInfo();
info.Verb = "print";
var path = System.Windows.Forms.Application.StartupPath;
info.FileName = Path.Combine(path, @"Reporting\BoxLabel.pdf");
info.CreateNoWindow = true;
info.WindowStyle = ProcessWindowStyle.Hidden;
Process p = new Process();
p.StartInfo = info;
p.Start();
p.WaitForInputIdle();
System.Threading.Thread.Sleep(3000);
if (false == p.CloseMainWindow())
p.Kill();
}
И это моя функция экспорта, которая генерирует PDF.
private void Export(LocalReport report)
{
byte[] Bytes = report.Render(format: "PDF", deviceInfo: "");
var path = System.Windows.Forms.Application.StartupPath;
log.Info("About to create file - " + Path.Combine(path, @"Reporting\BoxLabel.pdf"));
using (FileStream stream = new FileStream(Path.Combine(path, @"Reporting\BoxLabel.pdf"), FileMode.Create))
{
stream.Write(Bytes, 0, Bytes.Length);
}
path = Properties.Settings.Default.AssemblyLabelLocation;
log.Info("About to create file - " + Path.Combine(path, _objectList.First().BarcodeValue.Replace("*", "") + " - " + _objectList.First().ProductCode + ".pdf"));
using (FileStream stream = new FileStream(Path.Combine(path, _objectList.First().BarcodeValue.Replace("*", "") + " - " + _objectList.First().ProductCode + ".pdf"), FileMode.Create))
{
stream.Write(Bytes, 0, Bytes.Length);
}
}
Но независимо от того, что я установил, я все равно получаю пустое изображение в отчете. И как вы видите ниже, действительно есть изображение!
Настройка параметров для свойств изображения