|
Next we create an ABCpdf Doc object and give it some basic settings.
Although we could pass our HTML styled text directly directly to
the AddHTML function, we can take more control over the way that
fonts are added to the PDF if we specify font IDs.
Set theDoc = Server.CreateObject("ABCpdf3.Doc")
theDoc.FontSize = 72
theDoc.Rect.Inset 10, 10
theDoc.FrameRect
theFont1 = theDoc.EmbedFont("Verdana", "Latin",
False, True)
theFont2 = theDoc.EmbedFont("Verdana Bold", "Latin",
False, True)
|
|
|