space1 separator space2  

Code Samples - Neevia PDFstamp

Example 2: Stamp a PDF file with a multiline text watermark - ASP Copy 

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
 <%

   Dim NVstamp : Set NVstamp = Server.CreateObject("PDFstamp.Neevia")

   Dim indx : indx = NVstamp.CreateNewStamp
   NVstamp.Stamps(indx).StampType = 1
   NVstamp.Stamps(indx).Name = "Stamp1"
   NVstamp.Stamps(indx).Text = "LINE1%n%LINE2%n%LINE3"
   NVstamp.Stamps(indx).FontName = "Arial"
   NVstamp.Stamps(indx).TextRenderingMode = 0
   NVstamp.Stamps(indx).TextColor = "#FF0000"
   NVstamp.Stamps(indx).X = "center"
   NVstamp.Stamps(indx).Y = "center"
   NVstamp.Stamps(indx).Width = "200"
   NVstamp.Stamps(indx).Height = "200"
   NVstamp.Stamps(indx).PlaceAs = 0

   Dim retVal
   retVal = NVstamp.StampPDF("c:\in.pdf", "c:\out.pdf")

   If retVal <> 0 Then
     Response.Write("Error code=" & CStr(retVal))
   Else
     Response.Write("Done")
   End If

  %>