ITextSharp HTML 到 PDF 转换 CSS 图像在转换后不显示

ITextSharp HTML to PDF Conversion CSS Images are not showing after convesion

我正在尝试将带有 CSS 的 HTML 转换为 Pdf,并且成功了。但是一旦我尝试将图像从 CSS 添加到 div,转换后的 Pdf 将不会显示图像

这是我的代码

对于 Pdf 内容类型

使用系统; 使用 System.IO; 使用 System.Web.Mvc;

            namespace MvcApplication1.Helpers
            {
                public class PdfContent : ActionResult
                {
                    public MemoryStream MemoryStream { get; set; }
                    public string FileName { get; set; }

                    public override void ExecuteResult(ControllerContext context)
                    {
                        if (context == null)
                        {
                            throw new ArgumentNullException("context");
                        }

                        var response = context.HttpContext.Response;
                        response.ContentType = "pdf/application";
                        response.AddHeader("content-disposition", "attachment;filename=" + FileName + ".pdf");
                        response.OutputStream.Write(MemoryStream.GetBuffer(), 0, MemoryStream.GetBuffer().Length);
                    }
                }
            }

调用pdf的动作

  public ActionResult GeneratePdf()
                        {
                            var cssText = System.IO.File.ReadAllText(@"C:\Users\sansa\Desktop\Ground Operations\HTMLResources\grace.css");
                            var htmlText = System.IO.File.ReadAllText(@"C:\Users\sansa\Desktop\Ground Operations\HTMLResources\grace.html");

                            var cssArray = cssText.Trim().Split('}');

                            var cssClassesString = string.Join("} ", cssArray);

                            var memoryStream = new MemoryStream();
                            var document = new Document();
                            var writer = PdfWriter.GetInstance(document, memoryStream);
                            document.Open();

                            using (var cssMemoryStream = new MemoryStream(System.Text.Encoding.UTF8.GetBytes(cssClassesString)))
                            {
                                using (var htmlMemoryStream = new MemoryStream(System.Text.Encoding.UTF8.GetBytes(htmlText)))
                                {
                                    XMLWorkerHelper.GetInstance().ParseXHtml(writer, document, htmlMemoryStream, cssMemoryStream);
                                }
                            }

                            document.Close();

                            var pdfContent = new PdfContent
                            {
                                MemoryStream = memoryStream,
                                FileName = "SomeName"
                            };
                            return pdfContent;
                        }

CSS类

                .main_div{background-color:#F8F8F8; vertical-align:center; z-index:1000000; border-width:1px; border-style:solid ;border-radius: 2px;border-color: #E0E0E0; width:400px; height:200px}
                .text_one{color: #003300;}
                .text_two{color: #0000ca;}
                .text_three{color: #e40000;}
                .tbl_page{
                    margin-top: 5px;
                    color: black;
                    background-color: cornsilk;
                    display: block;
                    border-style: solid;
                    border-color: wheat;
                    border-width: 1px;;
                    border-radius: 5px;
                    font-family: "Times New Roman", Times, serif;
                    font-size: 12px;
                    white-space: normal;
                    line-height: normal;
                }

                .tbl_cell{
                    background-color: honeydew;
                }

                td, th {
                    display: table-cell;
                }

                .tbr_raw{
                    background-color: #66CCFF;
                    text-align: center;
                }

                .image_div_background{
                    background-image: url('violin-clip-art-violin-clip-art-1.jpg');
                    height: 400px; width: 400px;
                }

此代码将生成干净的 HTML 到 Pdf 的转换 除了它不会显示在转换后的文件

中申请 div 背景的图像

我也尝试通过 CSS 将图像分配给 div 但没有工作,所以当我尝试在 div 标签内添加带有 scr 属性的 img 标签时它会工作对我来说

试试这个

<div class="image_div_background">
<img scr="www.yourDomineName.com/violin-clip-art-violin-clip-art-1.jpg"/>
<div>

希望它对你有用