csharp 将RDLC渲染为PDF输出

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了csharp 将RDLC渲染为PDF输出相关的知识,希望对你有一定的参考价值。

public abstract class BaseReport : Page
{
    protected void Page_LoadComplete(object sender, EventArgs e)
    {
        //将本地报表写入到HTTP输出流
        using (var localReport = GetLocalReport())
        {
            var dispayName = localReport.DisplayName;
            RenderReportToPDFOutput(localReport, dispayName, IsExport);
        }
    }

    /// <summary>
    /// 标记当前请求是呈现报表还是导出报表
    /// </summary>
    protected bool IsExport { get; set; }

    Margins _margin;
    /// <summary>
    /// 指定报表的边距尺寸,以百分之一英寸为单位。默认所有外边距为0in。
    /// </summary>
    protected Margins ReportMargin
    {
        get
        {
            if (_margin == null)
            {
                _margin = new Margins(0, 0, 0, 0);
            }
            return _margin;
        }
        set { _margin = value; }
    }

    /// <summary>
    /// 获取一个附带了数据源的本地报表
    /// </summary>
    /// <returns></returns>
    protected abstract LocalReport GetLocalReport();

    /// <summary>
    /// 将LocalReport渲染为PDF输出
    /// </summary>
    /// <param name="localReport">包含了数据源的本地报表</param>
    /// <param name="displayName">导出文件名称</param>
    /// <param name="isExport">是否为导出</param>
    protected void RenderReportToPDFOutput(LocalReport localReport, string displayName = null, bool isExport = false)
    {
        string mimeType, encoding, extension, deviceInfo;
        string[] streamids;
        Warning[] warnings;
        deviceInfo = string.Format(@"<DeviceInfo>
<SimplePageHeaders>False</SimplePageHeaders>
<MarginTop>{0}in</MarginTop>
<MarginLeft>{1}in</MarginLeft>
<MarginRight>{2}in</MarginRight>
<MarginBottom>{3}in</MarginBottom>
</DeviceInfo>"
        , ReportMargin.Top / 100.0, ReportMargin.Left / 100.0, ReportMargin.Right / 100.0, ReportMargin.Bottom / 100.0);

        if (!string.IsNullOrEmpty(displayName)) localReport.DisplayName = displayName;
        byte[] bytes = localReport.Render("PDF", deviceInfo, out mimeType, out encoding, out extension, out streamids, out warnings);

        Response.Clear();
        Response.ContentEncoding = Encoding.UTF8;
        Response.ContentType = mimeType;
        //Response.AppendHeader("Content-Length", bytes.Length.ToString());//Render方法已经处理了。
        if (isExport)
        {
            if (string.IsNullOrEmpty(displayName)) displayName = localReport.DisplayName;
            if (string.IsNullOrEmpty(displayName)) displayName = DateTime.Now.ToString("yyyyMMddhhmmss");
            if (!Path.HasExtension(displayName)) displayName += "." + extension;
            Response.AppendHeader("Content-Disposition", "attachment;filename=" + HttpUtility.UrlEncode(displayName, Encoding.UTF8));
        }
        Response.BinaryWrite(bytes);
        Response.End();
    }
}

以上是关于csharp 将RDLC渲染为PDF输出的主要内容,如果未能解决你的问题,请参考以下文章

使用 s-s-rS 和 ASP.NET 合并以 Pdf 格式生成的报告

csharp 为RDLC设计报表提供数据源

以只读 C# 格式导出为 PDF 的 .rdlc 格式报告

如何使用 RDLC 在 PDF 中嵌入字体

csharp 在ASP.NET中流式传输和下载RDLC报告

csharp RDLC,接口,外部数据源,数据集,从代码选择数据源。