Windows Phone Silverlight 8.1中的图像文件到PDF转换

时间:2015-01-12 12:03:16

标签: c# pdf windows-phone-8.1

我正在编写Windows Phone 8.1 Silverlight应用程序,

我必须将图像文件转换为PDF。

有什么方法,怎么做以及哪些图书馆可以自由使用?

谢谢!

2 个答案:

答案 0 :(得分:0)

有一个名为jsPDF的客户端网站js库值得一试。

答案 1 :(得分:0)

这是答案,无论谁想要它。它的工作和测试。

我在Windows Phone 8.1项目中添加了ComponentOne Library。

using C1.Phone.Pdf;
using C1.Phone.PdfViewer;

C1PdfDocument pdf = new C1PdfDocument(PaperKind.PrcEnvelopeNumber3Rotated);
pdf.Landscape = true;

var rc = new System.Windows.Rect(20,30,300,200);
pdf.DrawImage(wbitmp, rc);

var fillingName = "Test.pdf";
var gettingFile = IsolatedStorageFile.GetUserStoreForApplication();

using (var loadingFinalStream = gettingFile.CreateFile(fillingName))
{
   pdf.Save(loadingFinalStream);
}