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 | <%
Dim NVstamp : Set NVstamp = Server.CreateObject("PDFstamp.Neevia")
Dim indx : indx = NVstamp.CreateNewStamp
NVstamp.Stamps(indx).StampType = 0
NVStamp.Stamps(indx).Name = "Stamp1"
NVStamp.Stamps(indx).Text = "WATERMARK"
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).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
%>
|