Xamarin 免费 HTML 或 DOC 到 PDF 转换

Xamarin free HTML or DOC to PDF Conversion

我目前正在 phone/tab 上搜索将 HTML 或 DOCX 文件转换为 PDF 的库或方法,主要是在 Android 上搜索一种方法或 iOS idk 如果它是 PCL 或特定于平台的方法。我可以独立地为每个平台执行此操作,因为我们的应用程序需要 iOS 8 或 android kitkat,它们都支持本机 PDF 转换,但我想为用户无缝执行此操作,所以问题是,如果有人之前已经这样做了,没有首先将它加载到可见的 Webview 中,或者知道一个未获得 GPL 许可的开放 API(无法发布代码),用 Xamarin 做到这一点。

我知道可以在线执行此操作,但我不想为此依赖在线服务。

感谢您的帮助和想法。

Android 解法:

通过依赖服务调用 SafeHTMLToPDF(string html, string filename)

DependencyService.Get<YOURINTERFACE>().SafeHTMLToPDF(htmlString, "Invoice");


   public string SafeHTMLToPDF(string html, string filename)
    {

        var dir = new Java.IO.File(Android.OS.Environment.ExternalStorageDirectory.AbsolutePath + "/pay&go/");
        var file = new Java.IO.File(dir + "/" + filename + ".pdf");

        if (!dir.Exists())
            dir.Mkdirs();


        int x = 0;
        while (file.Exists())
        {
            x++;
            file= new Java.IO.File(dir + "/" + filename + "( " + x + " )" + ".pdf");
        }

        if (webpage == null)
            webpage = new Android.Webkit.WebView(GetApplicationContext());

        int width = 2102;
        int height = 2973;

        webpage.Layout(0, 0, width, height);
        webpage.LoadDataWithBaseURL("",html, "text/html", "UTF-8" , null);
        webpage.SetWebViewClient(new WebViewCallBack(file.ToString()));

        return file.ToString();
    }


    class WebViewCallBack : WebViewClient
    {

        string fileNameWithPath = null;

        public WebViewCallBack(string path)
        {
            this.fileNameWithPath = path;
        }


        public override void OnPageFinished(Android.Webkit.WebView myWebview, string url)
        {
            PdfDocument document = new PdfDocument();
            PdfDocument.Page page = document.StartPage(new PdfDocument.PageInfo.Builder(2120 ,3000, 1).Create());

            myWebview.Draw(page.Canvas);
            document.FinishPage(page);
            Stream filestream = new MemoryStream();
            FileOutputStream fos = new Java.IO.FileOutputStream(fileNameWithPath, false); ;
            try
            {
                document.WriteTo(filestream);
                fos.Write(((MemoryStream)filestream).ToArray(), 0, (int)filestream.Length);
                fos.Close();
            }
            catch
            {
            }
        }
    }

以及 iOS

下的方法
public string SafeHTMLToPDF(string html, string filename)
    {
        UIWebView webView = new UIWebView(new CGRect(0, 0, 6.5 * 72, 9 * 72));


        var documents = Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments);
        var file = Path.Combine(documents, "Invoice" + "_" + DateTime.Now.ToShortDateString() + "_" + DateTime.Now.ToShortTimeString() + ".pdf");

        webView.Delegate = new WebViewCallBack(file);
        webView.ScalesPageToFit = true;
        webView.UserInteractionEnabled = false;
        webView.BackgroundColor = UIColor.White;
        webView.LoadHtmlString(html, null);



        return file;
    }

    class WebViewCallBack : UIWebViewDelegate
    {

        string filename = null;
        public WebViewCallBack(string path)
        {
            this.filename = path;

        }
        public override void LoadingFinished(UIWebView webView)
        {
            double height, width;
            int header, sidespace;

            width = 595.2;
            height = 841.8;
            header = 10;
            sidespace = 10;


            UIEdgeInsets pageMargins = new UIEdgeInsets(header, sidespace, header, sidespace);
            webView.ViewPrintFormatter.ContentInsets = pageMargins;

            UIPrintPageRenderer renderer = new UIPrintPageRenderer();
            renderer.AddPrintFormatter(webView.ViewPrintFormatter, 0);

            CGSize pageSize = new CGSize(width, height);
            CGRect printableRect = new CGRect(sidespace,
                              header,
                              pageSize.Width - (sidespace * 2),
                              pageSize.Height - (header * 2));
            CGRect paperRect = new CGRect(0, 0, width, height);
            renderer.SetValueForKey(NSValue.FromObject(paperRect), (NSString)"paperRect");
            renderer.SetValueForKey(NSValue.FromObject(printableRect), (NSString)"printableRect");
            NSData file = PrintToPDFWithRenderer(renderer, paperRect);
            File.WriteAllBytes(filename, file.ToArray());
        }

        private NSData PrintToPDFWithRenderer(UIPrintPageRenderer renderer, CGRect paperRect)
        {
            NSMutableData pdfData = new NSMutableData();
            UIGraphics.BeginPDFContext(pdfData, paperRect, null);

            renderer.PrepareForDrawingPages(new NSRange(0, renderer.NumberOfPages));

            CGRect bounds = UIGraphics.PDFContextBounds;

            for (int i = 0; i < renderer.NumberOfPages; i++)
            {
                UIGraphics.BeginPDFPage();
                renderer.DrawPage(i, paperRect);
            }
            UIGraphics.EndPDFContent();

            return pdfData;
        }

    }

是的,您可以在 Xamarin 中使用几行代码轻松地将 Word 文档转换为 PDF。您需要参考 nuget.org

中的 Syncfusion.Xamarin.DocIORenderer
Assembly assembly = typeof(App).GetTypeInfo().Assembly;
// Retrieves the document stream from embedded Word document
Stream inputStream = assembly.GetManifestResourceStream("WordToPDF.Assets.GettingStarted.docx");
string fileName = "GettingStarted.pdf";
// Creates new instance of WordDocument
WordDocument wordDocument = new WordDocument(inputStream,Syncfusion.DocIO.FormatType.Automatic);
inputStream.Dispose();
// Creates new instance of DocIORenderer for Word to PDF conversion
DocIORenderer render = new DocIORenderer();
// Converts Word document into PDF document
PdfDocument pdfDocument = render.ConvertToPDF(wordDocument);
// Releases all resources used by the DocIORenderer and WordDocument instance
render.Dispose();
document.Close();
// Saves the converted PDF file
MemoryStream outputStream = new MemoryStream();
pdfDocument.Save(outputStream);
// Releases all resources used by the PdfDocument instance
pdfDocument.Close();

要了解更多信息,请参阅here

对现有解决方案感到失望,我构建了一些扩展方法(OpenSource,MIT 许可),将 HTML 或 Xamarin.Forms.WebView 的内容转换为 PDF 文件。 WebView 到 PDF 的示例用法:

        async void ShareButton_Clicked(object sender, EventArgs e)
        {
            if (Forms9Patch.ToPdfService.IsAvailable)
            {
                if (await webView.ToPdfAsync("output.pdf") is ToFileResult pdfResult)
                {
                    if (pdfResult.IsError)
                        using (Toast.Create("PDF Failure", pdfResult.Result)) { }
                    else
                    {
                        var collection = new Forms9Patch.MimeItemCollection();
                        collection.AddBytesFromFile("application/pdf", pdfResult.Result);
                        Forms9Patch.Sharing.Share(collection, shareButton);
                    }
                }
            }
            else
                using (Toast.Create(null, "PDF Export is not available on this device")) { }
        }
    }

关于如何使用它的更完整的解释,这里有一篇简短的文章:https://medium.com/@ben_12456/share-xamarin-forms-webview-as-a-pdf-a877542e824a?

您无需任何第三方库即可将 HTML 转换为 PDF 文件。我正在分享我的 git 存储库以供将来参考。

https://github.com/dinesh4official/XFPDF