Scripting Function - SaveToFolderTiff
The function specifies a folder where each processed image file will be saved. The function is special version of SaveToFolder that saves images in Tagged Image File Format (TIFF). The function allows you to specify if LZW compression is used when saving each processed image.
Syntax
SaveToFolderTiff foldername As StringValueFolderName, uselzwcompression As BooleanValue, recreateoriginalfolderstructure As BooleanValue
Parameters
foldername - the full path to the folder where processed image files will be saved. Note that if the specified folder does not exist it will be created.
uselzwcompression - the use LZW compression flag
recreateoriginalfolderstructure - Optional Parameter - When set to True the original folder structure of the images will be created under the output folder. When set to False or not included in the function call the processed images will be saved into the output folder.
Example
The following example specifies that all the processed images should be saved using Tagged Image File Format (TIFF) to a folder named "c:\temp\myimages". Each processed image will be saved with LZW compression:
SaveToFolderTiff "c:\temp\myimages", True
Version Information
Supported in Multiple Image Resizer .NET v2.0.0.0
Optional Parameter recreateoriginalfolderstructure added in Multiple Image Resizer .NET v2.5.0.0
See Also