0
是否有人在SO熟悉PdfMetamorphosis庫? 它支持的功能之一是能夠將rtf轉換爲pdf。 此功能很好用,但我遇到了圖像對齊問題。PdfMetamorphosis - rtf到pdf圖像對齊問題
如果我的rtf並排有兩個嵌入圖像,轉換後圖像不再對齊,而是一個在另一個下面。
我使用的代碼如下
PdfMetamorphosis pdf = newPdfMetamorphosis();
pdf.Serial = "xxxxxxx";
pdf.PageStyle.PageOrientation.Portrait();
pdf.PageStyle.PageSize.A4();
string pfile = @"c:\temp\outFile" + DateTime.Now.ToFileTime() + ".pdf";
pdf.RtfToPdfConvertFile(@"c:\temp\inFile.rtf", pfile);
Process.Start(pfile);
它似乎並不像我在做什麼具體錯誤的。 該產品的開發人員還沒有能夠幫助我,我只是希望有人在這裏有這個庫的一些經驗