将Inkcanvas控件内容另存为pdf

时间:2011-04-05 00:59:00

标签: c# wpf pdf pdf-generation inkcanvas

我想将InkCanvas控件的输出保存为PDF文件我可以将其保存为.isf和.bmp并且我想将其保存为.pdf如何?

2 个答案:

答案 0 :(得分:0)

您可以从pdfsharp-codeplex下载PDF库 或pdfsharp.net 并检查图形样本图像部分 所以你可以先把它保存为.jpg然后保存为pdf

答案 1 :(得分:0)

//首先创建多个Ink Canvas实例并添加List **,然后将一个画布中的一张图像保存在PDF中。

[DebuggerDisplay("[{Scene}]Strokes:{Strokes.Count}, Children:{Children.Count}")]
public class InkCanvas_SandeepJadhav : InkCanvas
{
}
public List<InkCanvas_SandeepJadhav> listCanvas = new List<InkCanvas_SandeepJadhav>();

      public void saveMultiInkCanvasToPdf()
        {
            string subpath = Directory.GetCurrentDirectory();          
            SaveFileDialog saveFileDialog12 = new SaveFileDialog();
            saveFileDialog12.Filter = "Pdf File|*.pdf";
            saveFileDialog12.Title = "Save Pdf File";
            saveFileDialog12.InitialDirectory = subpath;
            saveFileDialog12.ShowDialog();
            // If the file name is not an empty string open it for saving.  
            if (saveFileDialog12.FileName == "") return;
            subpath = saveFileDialog12.FileName.Substring(0, saveFileDialog12.FileName.Length - saveFileDialog12.SafeFileName.Length);

            string extension = saveFileDialog12.FileName.Remove(subpath.IndexOf(subpath), subpath.Length);
            string[] allStr = extension.Split('.');

            if (allStr[1] == "pdf")
            {
                using (var stream = new FileStream(saveFileDialog12.FileName, FileMode.Append, FileAccess.Write, FileShare.None))
                {
                    iTextSharp.text.Document document = new iTextSharp.text.Document();
                    document.SetPageSize(iTextSharp.text.PageSize.A4);
                    iTextSharp.text.pdf.PdfWriter.GetInstance(document, stream);
                    if (!document.IsOpen())
                        document.Open();

                    for (int i = 0; i < listCanvas.Count; i++)
                    {
                        RenderTargetBitmap rtb = new RenderTargetBitmap((int)listCanvas[i].Width, (int)listCanvas[i].Height, 96d, 96d, PixelFormats.Default);
                        rtb.Render(listCanvas[i]);
                        // draw the ink strokes onto the bitmap
                        DrawingVisual dvInk = new DrawingVisual();
                        DrawingContext dcInk = dvInk.RenderOpen();
                        dcInk.DrawRectangle(listCanvas[i].Background, null, new Rect(0d, 0d, listCanvas[i].Width, listCanvas[i].Height));
                        foreach (System.Windows.Ink.Stroke stroke in listCanvas[i].Strokes)
                        {
                            stroke.Draw(dcInk);
                        }
                        dcInk.Close();

                        //save bitmap to file                          
                        MemoryStream fs = new MemoryStream();
                        System.Windows.Media.Imaging.JpegBitmapEncoder encoder1 = new JpegBitmapEncoder();
                        encoder1.Frames.Add(BitmapFrame.Create(rtb));
                        encoder1.Save(fs);
                        byte[] tArr = fs.ToArray();
                        fs.Close();

                        iTextSharp.text.Image image = iTextSharp.text.Image.GetInstance(tArr);
                        image.Alignment = iTextSharp.text.Element.ALIGN_CENTER;
                        image.ScaleToFit(document.PageSize.Width - 10, document.PageSize.Height - 10);//Resize image depend upon your need
                        document.Add(image);
                        document.NewPage();
                        fs.Close();
                    }
                    document.Close();
                }
            }

        }