我有一個需要將圖像導出爲PDF的項目。圖像和文字都需要導出到pdf。有沒有辦法通過使用silverPDF.dll和PdfReader來做到這一點?將圖像導出爲PDF
代碼在這裏。
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什麼,但有在線使用其他實用程序類的幾個教程。 [Here's](http://forums.asp.net/t/1348035.aspx/1)之一。 – 2012-01-16 05:25:59