|
Finally we add the Unicode text to a new document and save it.
[C#]
Doc theDoc = new Doc();
theDoc.Font = theDoc.EmbedFont("Arial", "Unicode",
false, true);
theDoc.FontSize = 96;
theDoc.Rect.Inset(10, 10);
theDoc.AddText(theValues);
theDoc.Save(Server.MapPath("fdf.pdf"));
[Visual Basic]
Dim theDoc As Doc = New Doc()
theDoc.Font = theDoc.EmbedFont("Arial", "Unicode",
False, True)
theDoc.FontSize = 96
theDoc.Rect.Inset(10, 10)
theDoc.AddText(theValues)
theDoc.Save(Server.MapPath("fdf.pdf"))
|
|
|