gpt4 book ai didi

c# - 将 byte[] 传递给 stimulsoft 使用变量显示在图像上

转载 作者:行者123 更新时间:2023-11-30 20:22:26 26 4
gpt4 key购买 nike

我想使用变量将从 sql 数据库(varbinary) 获取的 Logo 字节数组 传递到我的 stimulsoft 报告,并在标题的图像组件中显示。

有人可以帮忙吗?

最佳答案

byte[] ImageByteArray = ReadLogoFromSqlDataBase();
MemoryStream ms = new MemoryStream(ImageByteArray);
System.Drawing.Image image = System.Drawing.Image.FromStream(ms);

StiReport rpt = new StiReport();
rpt.ReportFile = "rpt1.mrt";
rpt.Dictionary.Variables.Add("Logo", image);
rpt.Design(); or rpt.Print();

关于c# - 将 byte[] 传递给 stimulsoft 使用变量显示在图像上,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31690921/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com