Scripting Function - SaveToSubFolderTiff
The function specifies that each processed image file will be saved to a specified sub folder beneath each original image files location. The function is special version of SaveToSubFolder 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
SaveToSubFolderTiff subfoldername As StringValueSubFolderName, uselzwcompression As BooleanValue
Parameters
subfoldername - the sub folder name where processed image files will be saved. Note that if the specified sub folder does not exist it will be created.
uselzwcompression - the use LZW compression flag
Example
The following example specifies that each processed image should be saved using Tagged Image File Format (TIFF) to a sub folder named "MyImages" beneath the original location of each image. Each processed image will be saved without LZW compression (no compression):
SaveToSubFolderTiff "MyImages", False
Version Information
Supported in Multiple Image Resizer .NET v2.0.0.0
See Also