|
Here, we create a PDF document showing how different values of
alpha result in different levels of transparency.
Set theDoc = Server.CreateObject("ABCpdf13.Doc")
theDoc.Rect.Inset 20,20
theDoc.FontSize = 300
For i = 1 To 10
theDoc.Color.Alpha = 255 / i
theDoc.AddText theDoc.Color.Alpha
theDoc.Rect.Move 25, -50
Next
theDoc.Save "c:\mypdfs\coloralpha.pdf"

coloralpha.pdf
|