The TIF BitmapIO class provides a function published interface for tiff I/O that gives access to the settings of the image format to be saved.
This method returns the format type, which is one of the enum types.
Thetype #color16 wasaddedin 3ds Max 8 to provide access to the new 16-bit color option.
This method allows you to set the format type.
Thetype #color16 wasaddedin 3ds Max 8 to provide access to the new 16-bit color option.
This method returns the DPI resolution.
This method allows you to set the DPI resolution
The methods in this interface can be accessed by specifying the class, interface, and method. For example: tif.itifio.getType() .
MAXScript will automatically search through a class’ interfaces for a property or method name if the name isn’t found as a class method or property. This allows you to say: tif.getType() .
Providing the fully qualified name of the method results in faster script execution. Providing the fully qualified name is also safer, as at some point in time another interface could be specified for the class, and a method or property with the same name could be defined in that interface. Which method or property is used would then be dependent on the order in which the interfaces were searched for the method or property name.