ABCPDF :Generer des fichiers PDF par ASP a la volee
- Par: serveurblog
- Le: 09.04.2008 11:27:40
- Dans: Composants ASP
- Commentaires: 0
Voici un exemple de fonctionnement :
Set theDoc = Server.CreateObject("ABCpdf3.Doc")
theDoc.FontSize = 96
theDoc.AddText "bonjour"
theDoc.Save "c:\mypdfs\simple.pdf"
Set theDoc = Server.CreateObject("ABCpdf3.Doc")
theDoc.AddGrid
theDoc.Color = "255 0 0"
theDoc.Width = 10
theDoc.Rect.Position 100, 200
theDoc.Rect.Width = 400
theDoc.Rect.Height = 500
theDoc.FrameRect
theDoc.Save "c:\mypdfs\coordinates.pdf"
Pas de commentaire