0
我想在C#中使用iTextSharp庫將逗號分隔的字符串(CSV)文件轉換爲pdf文件。我想知道是否有任何其他免費或更有效的工具/方式進行此類轉換。c#中的CSV到PDF文件
我想在C#中使用iTextSharp庫將逗號分隔的字符串(CSV)文件轉換爲pdf文件。我想知道是否有任何其他免費或更有效的工具/方式進行此類轉換。c#中的CSV到PDF文件
您可以使用iTextSharp
下面是一個例子:
Document pdfDoc = new Document();
string path = @"c:\file.pdf";
PdfWriter writer = PdfWriter.GetInstance(pdfDoc, new FileStream(path, FileMode.OpenOrCreate));
pdfDoc.Open();
pdfDoc.Add(new Paragraph("your data"));
pdfDoc.Close();
問過,問題是相當主觀的。 http://stackoverflow.com/questions/2937797/best-c-sharp-api-to-create-pdf – crownedzero