Customers include:
Custom Application Development
DLL / COM Products |
|
This is a fully functional DLL that can be incorporated in to virtually any Windows Program. We have provided some sample
source code to show how you could use this DLL in your program
return status 1 means successful split return status 0 means filename not found return status -1 general error return status -2 means not a tiff file PHP
$Obj = new COM("TiffPageSplitDLL.TiffPageSplitterDLL"); Visual Basic Add a refernce to the DLL in the Project
Dim TSplit As New TiffPageSplitterDLL To call the function and split pages of the TIFF file, you could use the following: splitpageresult = TSplit.Tiff_PageSplit("C:\test\test.tif", "C:\outputdir")
Cold Fusion
<cfobject type="com"
<cfset filename = "<FULL PATH AND FILENAME of a valid TIFF FILE>">
ASP Copy and Paste the following source code in to a test.asp page on your web server:
return status 1 means successful split
<% filename = "<FULL PATH AND FILENAME of a valid TIFF FILE>"
splitresult = Obj.Tiff_PageSplit(cstr(filename), "C:\outputdir")>
Set Obj = Nothing |