我有一个必须将图像导出为PDF的项目。图片和文字都需要导出为pdf。有没有一种方法可以通过使用silverPDF.dll和PdfReader来做到这一点?

在这里编码。

 private void btnOutlook_Click(object sender, System.Windows.RoutedEventArgs e)
    {
        XBrush xbrush;
        SaveFileDialog savePDF = new SaveFileDialog();
        savePDF.Filter = "PDF file format | *.pdf";
        if (savePDF.ShowDialog() == true)
        {
            PdfDocument document = new PdfDocument();
            PdfPage page = document.AddPage();
            XGraphics gfx = XGraphics.FromPdfPage(page);
            XPdfFontOptions options = new XPdfFontOptions(PdfFontEncoding.Unicode, PdfFontEmbedding.Always);

            XFont font = new XFont("Huxtable", 20, XFontStyle.Bold, options);

            for (int x = 0; x < 10; x++)
            {
                if (x % 2 == 0)
                {
                    xbrush = XBrushes.Red;
                }
                else
                    xbrush = XBrushes.Black;
                gfx.DrawString(string.Format("{0}", stringArray[x]), font, xbrush, new XRect(0, (x * 20), page.Width, page.Height), XStringFormats.TopLeft);
            }

            document.Save(savePDF.OpenFile());
        }

    }

我可以在此代码的哪里插入将其插入pdf的图像?有什么办法吗?感谢您的所有回复。

最佳答案

是否需要是SilverPDF?在我以前的雇主使用iTextSharp库之前,Iv做过类似的事情(否则,我将粘贴示例代码)

iTextSharp-Working-with-images

Download Link

关于c# - 将图像导出为PDF,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/8875946/

10-11 20:17