 |
| Example 19: Apply a stationery to an existing PDF file from ASP.NET |
|
 |
 |
- Copy the Document Converter Pro .NET assembly from the
c:\program files\neevia.com\docConverterPro\.Net\ folder into your web site bin folder;
Note: Scroll down for the C# samples.
|
| Visual Basic |
 |
 |
<SCRIPT runat="server" language="VB">
Sub Page_Load(Source As Object, e As EventArgs)
Dim DC As New Neevia.docConverter
DC.setParameter( "StationeryFile", "c:\stat.pdf" )
DC.setParameter( "StampRotate", "0" )
DC.setParameter( "StampX", "0" )
DC.setParameter( "StampY", "0" )
' place the stationery as stamp (over the page content)
DC.setParameter( "Watermark", "false" )
DC.setParameter( "PlaceStationeryOnPages", "0" )
Dim RVal As Integer=DC.stampPDF("c:\in.pdf", "c:\out.pdf")
If RVal=0 Then
Response.Write("Done stamping!!!")
Else
Response.Write("Error stamping!!! RVal="& RVal.ToString())
End If
End Sub
</SCRIPT>
|
| VC# |
 |
 |
<%@ Page Language="C#" %>
<%@ Assembly Name = "docConverter" %>
<%@ Import Namespace = "Neevia" %>
<SCRIPT runat="server">
void Page_Load(object Source, EventArgs e)
{
Neevia.docConverter DC = new Neevia.docConverter();
DC.setParameter( "StationeryFile", @"c:\stat.pdf" );
DC.setParameter( "StampRotate", "0" );
DC.setParameter( "StampX", "0" );
DC.setParameter( "StampY", "0" );
// place the stationery as stamp (over the page content)
DC.setParameter( "Watermark", "false" );
DC.setParameter( "PlaceStationeryOnPages", "0" );
int RVal = DC.stampPDF(@"c:\in.pdf", @"c:\out.pdf");
if (RVal==0) {
Response.Write("Done stamping!!!");
} else {
Response.Write("Error stamping!!! RVal="+ RVal.ToString());
}
}
</SCRIPT>
|
|
|