1
Azure應用服務(以前的網站)有很多限制,所以我想知道iText的PDF創建工具是否仍然有效。具體來說,我會將HTML轉換爲PDF,包括各種樣式和圖像。iText(任何版本)是否適用於Windows Azure網站?
rotativa和Pechkin都沒有在Azure App Service上工作,因爲它的侷限性。
Azure應用服務(以前的網站)有很多限制,所以我想知道iText的PDF創建工具是否仍然有效。具體來說,我會將HTML轉換爲PDF,包括各種樣式和圖像。iText(任何版本)是否適用於Windows Azure網站?
rotativa和Pechkin都沒有在Azure App Service上工作,因爲它的侷限性。
Azure應用服務(以前的網站)有很多限制,所以我想知道iText的PDF創建工具是否仍然有效。
根據我在下面的示例測試,我可以用iText 7生成PDF文件,並能正常工作Azure上的應用程序服務的Web應用程序。
var path = Server.MapPath("test.pdf");
FileInfo dest = new FileInfo(path);
var writer = new PdfWriter(dest);
var pdf = new PdfDocument(writer);
var document = new Document(pdf);
document.Add(new Paragraph("hello world"));
document.Close();
生成PDF:
此外,我使用iText的,這對Azure Web App sandbox正常工作的基本特徵。如果iText的任何高級功能無法在沙箱上工作,您可以嘗試其他託管選項(如雲服務,虛擬機)。