HiQPdf渲染图像时抛出“无法布局图像”

时间:2019-04-03 11:25:28

标签: c# hiqpdf

我正在努力在pdf文档上渲染图像。渲染是通过C#方法完成的,如下所示:

    public void PrintPdf(System.Drawing.Image image, string htmlCode, string url)
    {
        PdfDocument Document = new PdfDocument();
        Document.Margins = new PdfDocumentMargins(20, 20, 20, 20);
        Document.ImagesCompression = 0;
        Document.Compress = false;
        Document.SerialNumber = "our-serial-number";

        PdfPage page = Document.AddPage(PdfPageSize.A4, Document.Margins, PdfPageOrientation.Portrait);

        PdfHtml overlayHtml = new PdfHtml(0, 0, htmlCode, url);
        overlayHtml.BrowserWidth = 740;
        overlayHtml.MediaType = "print";
        PdfLayoutInfo layoutInfo = page.Layout(overlayHtml);

        PdfImage pdfImage = new PdfImage(0, (float)115.5, image);
        layoutInfo = page.Layout(pdfImage);     // <-- this row causes exception from the HiQPdf library
    }

最后一行从HiQPdf库引发以下异常。有什么想法吗?

[HiQPdfException: Cannot layout the image]
   HiQPdf.PdfImage.LayoutObject(PdfCanvas objectsContainer) +7243
   HiQPdf.PdfPage.Layout(PdfObject pdfObject) +86

在我们将HiQPdf版本从5.4.0.0更新到10.17.0.0后开始出现此错误

参数似乎还可以,在htmlCode中有正常的html,我也看不到图像有问题。图片本身可以以png和pdf的形式下载,效果很好。

0 个答案:

没有答案