Function
|
Description
|
[TIF.Split](tiff filename)
|
Splits to the TIFF file and returns an array of filenames for each page. The tiff files will be in the same location as the original TIFF capture.
Parameter(s)
tiff filename - Typically this would be the filename of the current document {fdocname}.
|
[TIF.AddText](tiff filename, text, leftoffset, bottomoffset)
|
Allows text to be added to TIFFs.
Parameter(s)
tiff filename - Typically this would be the filename of the current document {fdocname}.
text - The text to add to the TIF.
leftoffset - The offset from the left of the page.
bottomoffset - The offset from the bottom of the page.
|
[TIF.AddText](tiff filename, text, leftoffset, bottomoffset, textcolor)
|
Allows text to be added with color (only applies to color TIFFs). Color can be an int or a string. If a string can be a color name (eg. red) OR 'r,g,b' integers.
Parameter(s)
tiff filename - Typically this would be the filename of the current document {fdocname}.
text - The text to add to the TIF.
leftoffset - The offset from the left of the page.
bottomoffset - The offset from the bottom of the page.
textcolor - Color code for the added text.
|
[TIF.AddText](tiff filename, text, leftoffset, bottomoffset, textcolor, textfont)
|
Allows font to also be added.
Parameter(s)
tiff filename - Typically this would be the filename of the current document {fdocname}.
text - The text to add to the TIF.
leftoffset - The offset from the left of the page.
bottomoffset - The offset from the bottom of the page.
textcolor - Color code for the added text.
textf
ont - Font for the added text.
|
[TIF.Combine](inputfilenames, outputfilename, byteorder)
|
Combines TIFF pages together. Uses byteorder 0 = Intel, all others are Motorola.
Parameter(s)
inputfilenames - An array of TIF filenames to be combined.
outputfilename - The name of the resulting TIF file.
byteorder - Specifies the TIF byte order.
|
[TIF.TIFtoPDF](tiff filename)
|
Returns the name of the converted PDF file.
Parameter(s)
tiff filename - The name of the source TIFF file.
|
[TIF.NoOfPages](tiff filename)
|
Returns the number of pages in the specified TIFF filename.
Parameter(s)
tiff filename - Typically this would be the filename of the current document {fdocname}.
|
[TIF.Splice](tiff filename, arrayofpages)
|
This function "splices" a TIFF file based on the array of pages. If item in the arrayofpages array is a comma separated list of pages. The function returns an array of spliced filenames. By default the files are placed in the same location as the source file.
Parameter(s)
tiff filename - Typically this would be the filename of the current document {fdocname}.
arrayofpages - An array of pages, with each array element being a comma separated list of pages.
|
[TIF.Splice](tiff filename, arrayofpages, outputpath)
|
This function "splices" a TIFF file based on the array of pages. If item in the arrayofpages array is a comma separated list of pages. The function returns an array of spliced filenames. The files are placed in the path specified by the outputpath parameter.
Parameter(s)
tiff filename - Typically this would be the filename of the current document {fdocname}.
arrayofpages - An array of pages, with each array element being a comma separated list of pages.
outputpath - The output location of the spliced files.
|
[TIFF.Redact](tiff filename,regex)
|
This function performs a redaction on the TIFF image for the text found in the supplied regex search expression. For example, if you set the regex search expression to be a credit card number, the function will search and tag credit card numbers, calculate the position (pixels) and then apply the redaction based on the coordinates returned. The redaction cannot be removed from the image.
Parameter(s)
tiff filename - Typically this would be the filename of the current document {fdocname}.
regex - A regex expression to search and identify the text to be redacted.
|