ライブラリPDFSharpは-iTextSharpのように-PDFファイルを生成できますか*HTMLフォーマットを考慮に入れます*?(太字(強い)、間隔(br)など)
以前、私はiTextSharpを使用し、そのように大まかに処理しました(以下のコード):
string encodingMetaTag = "<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\" />";
string htmlCode = "text <div> <b> bold </ b> or <u> underlined </ u> <div/>";
var sr = new StringReader (encodingMetaTag + htmlCode);
var pdfDoc = new Document (PageSize.A4, 10f, 10f, 10f, 0f);
var = new HTMLWorker htmlparser (pdfDoc);
PdfWriter.GetInstance (pdfDoc, HttpContext.Current.Response.OutputStream);
pdfDoc.Open ();
htmlparser.Parse (sr);
pdfDoc.Close ();
クラスオブジェクトHTMLWorkerを処理するPDFドキュメントの適切なHTMLフォームに組み込まれます。PDFSharpではどうでしょうか。PDFSharpと同様のソリューションがありますか?