将图像导出为PDF

时间:2012-01-16 05:00:39

标签: c# pdf silverlight-5.0

我有一个项目必须将图像导出为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的Image吗?有什么办法吗?感谢所有回复。

1 个答案:

答案 0 :(得分:1)

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

iTextSharp-Working-with-images

Download Link