 |
 |
| Example 9: Convert a TIFF file into PDF from ASP.NET |
|
 |
 |
 |
Add a reference in your project to docCreator library.
To do this:
a. On the Project menu, click Add Reference.
b. On the COM tab, locate Neevia docCreator and then click Select.
c. Click OK in the Add References dialog box to accept your selections.
|
 |
 |
| Visual Basic |
 |
 |
<SCRIPT runat="server" language="VB">
Sub Page_Load(Source As Object, e As EventArgs)
Dim documentToConvert As String : documentToConvert = "d:\test.tif"
Dim DC As Object : DC = Server.CreateObject("Neevia.docCreator")
Dim RVal As Integer : RVal = DC.ConvertImage(documentToConvert, documentToConvert & ".pdf")
DC = Nothing
If (RVal <> 0) Then
Response.Write("Error converting image !!!")
Else
Response.Write("Done converting!!!")
End If
End Sub
</SCRIPT>
|
| VC# |
 |
 |
<SCRIPT runat="server" language="C#">
void Page_Load(object Source, EventArgs e)
{
String docToConvert = @"d:\\test.tif";
Neevia.docCreator DC = new Neevia.docCreator();
int RVal = DC.convertImage(docToConvert, docToConvert + ".pdf");
DC = null;
if (RVal != 0) {
Response.Write("Error while converting the document!!!");
} else {
Response.Write("Done!!!");
}
}
</SCRIPT>
|
|
|
|