พอดี ผมหาฟอนต์ที่จะใช้สำหรับ ภาษาไทย ไม่เจอ ครับ
ลองทั้ง Cordia New / Angsana New แล้วก็ไม่ได้
ไม่แน่ใจว่าใช้ ฟอนต์อะไรได้บ้างครับ
[Spoil] คลิกเพื่อดูข้อความที่ซ่อนไว้// Create a new PDF document
PdfDocument document = new PdfDocument();
document.Info.Title = "Created with PDFsharp";
// Create an empty page
PdfPage page = document.AddPage();
// Get an XGraphics object for drawing
XGraphics gfx = XGraphics.FromPdfPage(page);
// Create a font
XFont font = new XFont("Cordia New", 20, XFontStyle.BoldItalic);
// Draw the text
gfx.DrawString("แบบฝึกหัด เรื่อง เศษส่วน เบื้องต้น ขั้น ที่ 1 ทำความเข้าใจ กับ เศษส่วน", font, XBrushes.Black,
new XRect(0, 0, page.Width, page.Height),
XStringFormats.Center);
// Save the document...
string filename = @"D:\testEng\fraction_" + DateTime.Now.ToString("hhmmss fffff")+".pdf";
document.Save(filename);
// ...and start a viewer.
// Process.Start(filename);
มีใครเคยใช้งาน PdfSharpCore คู่กับ .net core ไม๊ ครับ รบกวนสอบถามหน่อยครับ
ลองทั้ง Cordia New / Angsana New แล้วก็ไม่ได้
ไม่แน่ใจว่าใช้ ฟอนต์อะไรได้บ้างครับ
[Spoil] คลิกเพื่อดูข้อความที่ซ่อนไว้