将 Inkcanvas 控件内容保存为 pdf

发布于 2024-10-30 20:20:03 字数 76 浏览 1 评论 0原文

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

I want to save the output of InkCanvas control as PDF file I can save it as .isf and .bmp and I want to save it as .pdf how ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

洛阳烟雨空心柳 2024-11-06 20:20:03

//首先创建多个 Ink Canvas 实例并添加到列表**中,然后保存在 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();
                }
            }

        }

//First of all create multiple instance of Ink Canvas and add in List** and then save in PDF one canvas have one image.

[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();
                }
            }

        }
无妨# 2024-11-06 20:20:03

您可以从 pdfsharp-codeplex 下载 PDF 库
pdfsharp.net
并检查图表示例图像部分
所以你可以先将其保存为.jpg,然后将其另存为pdf

you can download PDF library from pdfsharp-codeplex
or pdfsharp.net
and check the graph sample image section
so you can first save it as .jpg then save it as pdf

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文