关于FastReport.Net 导出图像 部分电脑很慢很慢的问题

头大!
本地测试正常,程序发布到部分服务器上就出现导出非常慢的问题,
本机和部分电脑没问题 可以秒开, 但有些服务器 要40秒到一分钟
问题代码 如下

        System.IO.MemoryStream ReportStream = new System.IO.MemoryStream();
        using (Report report = new Report())
        {
            DataSet ReportSource = PatientReportData.AssembleDataSet();
            report.Load(FastRepotTemple);
            report.RegisterData(ReportSource);
            bool IsPrepared = report.Prepare();//!!!!就是慢在这里 要好几十秒甚至几分钟

            ImageExport ImgExport = new ImageExport()
            {
                JpegQuality = 100,
                Resolution = 300
            };
            report.Export(ImgExport, ReportStream);
            ReportStream.Position = 0;
            return ReportStream;
        }

使用场景 MVC网站输出文件流